1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 03:53:21 +02:00

Comments.

This commit is contained in:
Alain Magloire 2002-10-10 22:06:08 +00:00
parent 96ac0e81e6
commit e0077adce6

View file

@ -68,7 +68,8 @@ public class RxThread extends Thread {
try { try {
String line; String line;
while ((line = reader.readLine()) != null) { while ((line = reader.readLine()) != null) {
//MIPlugin.getDefault().debugLog(line); //String text = (line.length() > 500) ? line.substring(0, 500) : line;
//MIPlugin.getDefault().debugLog(text);
processMIOutput(line + "\n"); processMIOutput(line + "\n");
} }
} catch (IOException e) { } catch (IOException e) {