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

don't clean the screen at the end

This commit is contained in:
Michael Scharf 2007-10-11 15:25:08 +00:00
parent edd1e5aaa8
commit cb381d72fe

View file

@ -73,9 +73,7 @@ public class SpeedTestConnection extends Thread {
line=reader.readLine(); line=reader.readLine();
// read some bytes // read some bytes
if(line==null) { if(line!=null) {
fControl.displayTextInTerminal("\033[2J\033c"+info);
} else {
os.write(line.getBytes("UTF-8")); os.write(line.getBytes("UTF-8"));
os.write(crnl); os.write(crnl);
n+=line.length(); n+=line.length();