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

Compiler warning.

This commit is contained in:
Markus Schorn 2010-01-29 15:23:11 +00:00
parent e8e151d71c
commit b1b040306a

View file

@ -24,7 +24,7 @@ import org.eclipse.core.runtime.Path;
*/
public class CWDLocator extends AbstractErrorParser {
private static final ErrorPattern[] patterns = {
new ErrorPattern("make\\[(.*)\\]: Entering directory `(.*)'", 0, 0) {
new ErrorPattern("make\\[(.*)\\]: Entering directory `(.*)'", 0, 0) { //$NON-NLS-1$
@Override
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
int level;
@ -45,7 +45,7 @@ public class CWDLocator extends AbstractErrorParser {
eoParser.pushDirectory(new Path(dir));
return true;
}
}, new ErrorPattern("make\\[.*\\]: Leaving directory", 0, 0) {
}, new ErrorPattern("make\\[.*\\]: Leaving directory", 0, 0) { //$NON-NLS-1$
@Override
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {
eoParser.popDirectoryURI();