mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +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:
parent
fa38973e26
commit
9c24279b46
2 changed files with 9 additions and 2 deletions
|
@ -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
|
2004-07-19 Vladimir Hirsl
|
||||||
|
|
||||||
Implementation of HP-UX SOM binary parser page.
|
Implementation of HP-UX SOM binary parser page.
|
||||||
|
|
|
@ -72,8 +72,10 @@ public class BuildConsolePartitioner
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void appendToDocument(final String text, final BuildConsoleStream stream) {
|
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() {
|
Runnable r = new Runnable() {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue