Merge branch 'master' of github.com:processing/processing

This commit is contained in:
Ben Fry
2014-11-15 16:30:26 -07:00
2 changed files with 4 additions and 3 deletions

View File

@@ -4196,6 +4196,7 @@ public class PApplet extends Applet
*
* @webref structure
* @usage Application
* @param name name of the function to be executed in a separate thread
* @see PApplet#setup()
* @see PApplet#draw()
* @see PApplet#loop()

View File

@@ -83,14 +83,14 @@ public class ErrorMessageSimplifier {
+ "\" should go here";
}
else {
result = "Code error on \"" + args[0]
result = "Error on \"" + args[0]
+ "\"";
}
}
break;
case IProblem.ParsingErrorDeleteToken:
if (args.length > 0) {
result = "Code error on \"" + args[0] + "\"";
result = "Error on \"" + args[0] + "\"";
}
break;
case IProblem.ParsingErrorInsertToComplete:
@@ -115,7 +115,7 @@ public class ErrorMessageSimplifier {
result = "\"color\" and \"int\" are reserved words & can't be used as variable names";
}
else {
result = "Code error on \"" + args[0] + "\"";
result = "Error on \"" + args[0] + "\"";
}
}
}