mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
Compiler warning.
This commit is contained in:
parent
e8e151d71c
commit
b1b040306a
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Reference in a new issue