1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-13 12:05:21 +02:00

2004-07-19 Alain Magloire

Fix for PR 70319: Clearing the console on build.
	* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsolePartioner.java
This commit is contained in:
Alain Magloire 2004-07-19 17:53:42 +00:00
parent fa38973e26
commit 9c24279b46
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-07-19 Alain Magloire
Fix for PR 70319: Clearing the console on build.
* src/org/eclipse/cdt/internal/ui/buildconsole/BuildConsolePartioner.java
2004-07-19 Vladimir Hirsl
Implementation of HP-UX SOM binary parser page.

View file

@ -72,8 +72,10 @@ public class BuildConsolePartitioner
*/
public void appendToDocument(final String text, final BuildConsoleStream stream) {
if( text.length() == 0 )
return;
// Do not do this, this is the way we clear the console.
// if( text.length() == 0 )
// return;
Runnable r = new Runnable() {