This commit is contained in:
benfry
2011-03-06 00:58:51 +00:00
parent c04019c501
commit 1dc3581d22
+1 -1
View File
@@ -2027,7 +2027,7 @@ public abstract class Editor extends JFrame implements RunnerListener {
mess = mess.substring(javaLang.length());
}
String rxString = "RuntimeException: ";
if (mess.indexOf(rxString) == 0) {
if (mess.startsWith(rxString)) {
mess = mess.substring(rxString.length());
}
statusError(mess);