who needs this guy?

This commit is contained in:
benfry
2004-01-16 19:17:00 +00:00
parent 60698cc39d
commit 94e2bca541
2 changed files with 6 additions and 182 deletions

View File

@@ -60,9 +60,12 @@ public class PdePreprocessor {
* so grab them here on construction.
*/
public PdePreprocessor() {
defaultImports[JDK11] = PdePreferences.get("compiler.imports.jdk11");
defaultImports[JDK13] = PdePreferences.get("compiler.imports.jdk13");
defaultImports[JDK14] = PdePreferences.get("compiler.imports.jdk14");
defaultImports[JDK11] =
BApplet.splitStrings(PdePreferences.get("compiler.imports.jdk11"), ',');
defaultImports[JDK13] =
BApplet.splitStrings(PdePreferences.get("compiler.imports.jdk13"), ',');
defaultImports[JDK14] =
BApplet.splitStrings(PdePreferences.get("compiler.imports.jdk14"), ',');
}