mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
minor error msg tweaks
This commit is contained in:
@@ -96,7 +96,7 @@ public class ErrorMessageSimplifier {
|
||||
result = "Consider adding a \"=\"";
|
||||
}
|
||||
else {
|
||||
result = "Consider adding a \"" + args[0] + "\"";
|
||||
result = "Error on \"" + args[0] + "\"";
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -122,7 +122,7 @@ public class ErrorMessageSimplifier {
|
||||
result = getErrorMessageForBracket(args[1].charAt(0));
|
||||
}
|
||||
else {
|
||||
result = "Consider adding a \"" + args[1] + "\"";
|
||||
result = "Error on \"" + args[0] + "\"Consider adding a \"" + args[1] + "\"";
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user