We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24fd78d commit b5096c4Copy full SHA for b5096c4
1 file changed
pdex/src/processing/mode/experimental/ErrorMessageSimplifier.java
@@ -96,7 +96,7 @@ public static String getSimplifiedErrorMessage(Problem problem) {
96
result = "Consider adding a \"=\"";
97
}
98
else {
99
- result = "Consider adding a \"" + args[0] + "\"";
+ result = "Error on \"" + args[0] + "\"";
100
101
102
@@ -122,7 +122,7 @@ public static String getSimplifiedErrorMessage(Problem problem) {
122
result = getErrorMessageForBracket(args[1].charAt(0));
123
124
125
- result = "Consider adding a \"" + args[1] + "\"";
+ result = "Error on \"" + args[0] + "\"Consider adding a \"" + args[1] + "\"";
126
127
128
break;
0 commit comments