mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 01:29:17 +01:00
Merge branch 'master' of github.com:processing/processing
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -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] + "\"";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user