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

Bug 178124

This commit is contained in:
Ken Ryall 2007-05-25 16:18:48 +00:00
parent 094d2cb0ba
commit f8d04b5aea

View file

@ -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;
}
}