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:
parent
9f9adbe864
commit
8961527f07
1 changed files with 1 additions and 3 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue