1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Uncomment the log stream code.

This commit is contained in:
Alain Magloire 2002-10-21 21:38:44 +00:00
parent 9a1e378aaa
commit fc62968007

View file

@ -267,9 +267,8 @@ public class RxThread extends Thread {
}
}
} else if (stream instanceof MILogStreamOutput) {
/*
// This is meant for the gdb console.
OutputStream log = session.getMIInferior().getPipedErrorStream();
OutputStream log = session.getLogPipe();
if (log != null) {
MILogStreamOutput out = (MILogStreamOutput)stream;
String str = out.getString();
@ -281,7 +280,6 @@ public class RxThread extends Thread {
}
}
}
*/
}
}