1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Reversing changes made to fix bug 107571. The fix for bug 119683 covers this problem too.

This commit is contained in:
Mikhail Khodjaiants 2006-01-25 19:18:46 +00:00
parent 2855f876ac
commit 16f558adbe
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2006-01-25 Mikhail Khodjaiants
Reversing changes made to fix bug 107571. The fix for bug 119683 covers this problem too.
* mi/org/eclipse/cdt/debug/mi/core/MISession.java
2006-01-23 Mikhail Khodjaiants
Bug 119683: long messages during launch cause gdb to timeout, launch to fail.
* plugin.xml

View file

@ -751,6 +751,9 @@ public class MISession extends Observable {
}
OutputStream getConsolePipe() {
if (miOutConsolePipe == null) {
getMIConsoleStream();
}
return miOutConsolePipe;
}