File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
java/src/processing/mode/java Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ public class Compiler {
3939
4040 static HashMap <String , String > importSuggestions ;
4141 static {
42- importSuggestions = new HashMap <String , String >();
42+ importSuggestions = new HashMap <>();
4343 importSuggestions .put ("Arrays" , "java.util.Arrays" );
4444 importSuggestions .put ("Collections" , "java.util.Collections" );
4545 importSuggestions .put ("Date" , "java.util.Date" );
@@ -188,7 +188,8 @@ public void close() { }
188188 "You might be missing a library." );
189189 System .err .println ("Libraries must be " +
190190 "installed in a folder named 'libraries' " +
191- "inside the 'sketchbook' folder." );
191+ "inside the sketchbook folder " +
192+ "(see the Preferences window)." );
192193 }
193194 }
194195
You can’t perform that action at this time.
0 commit comments