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:
parent
edd1e5aaa8
commit
cb381d72fe
1 changed files with 1 additions and 3 deletions
|
@ -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();
|
||||||
|
|
Loading…
Add table
Reference in a new issue