We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 710600a commit 9e116f3Copy full SHA for 9e116f3
app/src/processing/app/Library.java
@@ -114,7 +114,13 @@ private Library(File folder, String groupName) {
114
libraryFolder = new File(folder, "library");
115
examplesFolder = new File(folder, "examples");
116
referenceFile = new File(folder, "reference/index.html");
117
+ }
118
+
119
120
+ /**
121
+ * Handles all the Java-specific parsing for library handling.
122
+ */
123
+ protected void handle() {
124
File exportSettings = new File(libraryFolder, "export.txt");
125
StringDict exportTable = exportSettings.exists() ?
126
Util.readSettings(exportSettings) : new StringDict();
0 commit comments