1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

- make it shorter

This commit is contained in:
Alena Laskavaia 2008-10-22 19:47:38 +00:00
parent 9f9adbe864
commit 8961527f07

View file

@ -206,9 +206,7 @@ public class ErrorParserManager extends OutputStream {
if (line.length() > 1000) if (line.length() > 1000)
return; return;
for (Iterator<String> items = fErrorParsers.keySet().iterator();items.hasNext();) { for (IErrorParser[] parsers : fErrorParsers.values()) {
String parserId = items.next();
IErrorParser[] parsers = fErrorParsers.get(parserId);
for (IErrorParser curr : parsers) { for (IErrorParser curr : parsers) {
if (curr.processLine(line, this)) { if (curr.processLine(line, this)) {
return; return;