1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

2005-08-31 Alain Magloire

Fix Pr 107571:  Do not create the Console pipe is we
	have no consumer.
	* mi/org/eclipse/cdt/debug/mi/core/MISession.java
This commit is contained in:
Alain Magloire 2005-08-31 17:35:33 +00:00
parent 0af6f04543
commit 9511669ee0
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2005-08-31 Alain Magloire
Fix Pr 107571: Do not create the Console pipe is we
have no consumer.
* mi/org/eclipse/cdt/debug/mi/core/MISession.java
2005-08-28 Alain Magloire
Speed improvement after exchanging with the HP folks.
HP has apps having hundred of local variable running on machine

View file

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