mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
Bug 178124
This commit is contained in:
parent
094d2cb0ba
commit
f8d04b5aea
1 changed files with 2 additions and 2 deletions
|
@ -7,6 +7,7 @@
|
|||
*
|
||||
* Contributors:
|
||||
* QNX - initial API and implementation
|
||||
* Warren Paul (Nokia) - Bug 178124, have processLine return true if processed.
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.internal.errorparsers;
|
||||
|
@ -29,8 +30,7 @@ public class AbstractErrorParser implements IErrorParser {
|
|||
public boolean processLine(String line, ErrorParserManager eoParser) {
|
||||
for (int i = 0; i < patterns.length; ++i)
|
||||
if (patterns[i].processLine(line, eoParser))
|
||||
break;
|
||||
// Should this return true if we processed a line?
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue