1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

bug 380956: corrected somewhat misleading comments

This commit is contained in:
Andrew Gvozdev 2012-05-31 17:34:18 -04:00
parent bdba5983b4
commit 07f9700ccd
2 changed files with 2 additions and 2 deletions

View file

@ -1206,7 +1206,7 @@ public class ErrorParserFileMatchingTest extends TestCase {
}
/**
* Checks if output of '-n'/'--just-print' or '-w'/'--print-directory' options of make can be recognized.
* Checks if output of -w or --print-directory options of make can be recognized.
*
* @throws Exception...
*/

View file

@ -76,7 +76,7 @@ public class CWDLocator extends AbstractErrorParser {
return true;
}
},
// This is emitted by GNU make using options -n, --just-print or -w, --print-directory.
// This is emitted by GNU make using options -w or --print-directory.
new ErrorPattern("make: Entering directory `(.*)'", 0, 0) { //$NON-NLS-1$
@Override
protected boolean recordError(Matcher matcher, ErrorParserManager eoParser) {