Skip to content

Commit 07f5cb0

Browse files
kriegaexslachiewicz
authored andcommitted
Remove "error: " prefixes from javac error messages
Before, "warning: " prefixes were already removed. This change brings both warnings and errors in sync with regard to message processing. Some tests had to be slightly adjusted to reflect the now cleaner error messages.
1 parent 2305357 commit 07f5cb0

File tree

2 files changed

+22
-13
lines changed

2 files changed

+22
-13
lines changed

plexus-compilers/plexus-compiler-javac/src/main/java/org/codehaus/plexus/compiler/javac/JavacCompiler.java

+19-8
Original file line numberDiff line numberDiff line change
@@ -956,11 +956,14 @@ static CompilerMessage parseModernError(int exitCode, String error) {
956956
final StringBuilder msgBuffer = new StringBuilder();
957957
String msg = tokens.nextToken(EOL).substring(2);
958958

959-
// Remove the 'warning: ' prefix
960-
final String warnPrefix = getWarningPrefix(msg);
961-
if (warnPrefix != null) {
959+
// Remove "error: " and "warning: " prefixes
960+
String prefix;
961+
if ((prefix = getErrorPrefix(msg)) != null) {
962+
messageKind = ERROR;
963+
msg = msg.substring(prefix.length());
964+
} else if ((prefix = getWarningPrefix(msg)) != null) {
962965
messageKind = WARNING;
963-
msg = msg.substring(warnPrefix.length());
966+
msg = msg.substring(prefix.length());
964967
}
965968
msgBuffer.append(msg).append(EOL);
966969

@@ -999,15 +1002,23 @@ static CompilerMessage parseModernError(int exitCode, String error) {
9991002
}
10001003
}
10011004

1002-
private static String getWarningPrefix(String msg) {
1003-
for (String warningPrefix : WARNING_PREFIXES) {
1004-
if (msg.startsWith(warningPrefix)) {
1005-
return warningPrefix;
1005+
private static String getMessagePrefix(String message, String[] prefixes) {
1006+
for (String prefix : prefixes) {
1007+
if (message.startsWith(prefix)) {
1008+
return prefix;
10061009
}
10071010
}
10081011
return null;
10091012
}
10101013

1014+
private static String getWarningPrefix(String message) {
1015+
return getMessagePrefix(message, WARNING_PREFIXES);
1016+
}
1017+
1018+
private static String getErrorPrefix(String message) {
1019+
return getMessagePrefix(message, ERROR_PREFIXES);
1020+
}
1021+
10111022
/**
10121023
* put args into a temp file to be referenced using the @ option in javac command line
10131024
*

plexus-compilers/plexus-compiler-javac/src/test/java/org/codehaus/plexus/compiler/javac/ErrorMessageParserTest.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -753,8 +753,7 @@ public void testJava7Error() throws Exception {
753753

754754
assertThat(
755755
message1.getMessage(),
756-
is("error: cannot find symbol" + EOL + " symbol: class Properties" + EOL
757-
+ " location: class Error"));
756+
is("cannot find symbol" + EOL + " symbol: class Properties" + EOL + " location: class Error"));
758757

759758
assertThat(message1.getStartColumn(), is(16));
760759

@@ -770,8 +769,7 @@ public void testJava7Error() throws Exception {
770769

771770
assertThat(
772771
message2.getMessage(),
773-
is("error: cannot find symbol" + EOL + " symbol: class Properties" + EOL
774-
+ " location: class Error"));
772+
is("cannot find symbol" + EOL + " symbol: class Properties" + EOL + " location: class Error"));
775773

776774
assertThat(message2.getStartColumn(), is(35));
777775

@@ -1259,7 +1257,7 @@ public void testWarningFollowedByBadSourceFileError() throws Exception {
12591257
private void validateBadSourceFile(CompilerMessage message) {
12601258
assertThat("Is an Error", message.getKind(), is(CompilerMessage.Kind.ERROR));
12611259
assertThat("On Correct File", message.getFile(), is("/MTOOLCHAINS-19/src/main/java/ch/pecunifex/x/Cls1.java"));
1262-
assertThat("Message starts with access Error", message.getMessage(), startsWith("error: cannot access Cls2"));
1260+
assertThat("Message starts with access Error", message.getMessage(), startsWith("cannot access Cls2"));
12631261
}
12641262

12651263
private static void assertEquivalent(CompilerMessage expected, CompilerMessage actual) {

0 commit comments

Comments
 (0)