1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

trim the line.

This commit is contained in:
Alain Magloire 2002-11-05 16:01:35 +00:00
parent 0fe5a0800e
commit fd423bd490

View file

@ -199,6 +199,7 @@ public class ErrorParserManager extends OutputStream {
try {
String line = rd.readLine();
while (line != null) {
line = line.trim();
processLine(line);
previousLine = line;
line = rd.readLine();