We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 672a01f commit b8602e4Copy full SHA for b8602e4
1 file changed
java/src/processing/mode/java/Compiler.java
@@ -39,7 +39,7 @@ public class Compiler {
39
40
static HashMap<String, String> importSuggestions;
41
static {
42
- importSuggestions = new HashMap<String, String>();
+ importSuggestions = new HashMap<>();
43
importSuggestions.put("Arrays", "java.util.Arrays");
44
importSuggestions.put("Collections", "java.util.Collections");
45
importSuggestions.put("Date", "java.util.Date");
@@ -188,7 +188,8 @@ public void close() { }
188
"You might be missing a library.");
189
System.err.println("Libraries must be " +
190
"installed in a folder named 'libraries' " +
191
- "inside the 'sketchbook' folder.");
+ "inside the sketchbook folder " +
192
+ "(see the Preferences window).");
193
}
194
195
0 commit comments