Skip to content

Commit 9e116f3

Browse files
committed
move the Java-specific parts into their own method
1 parent 710600a commit 9e116f3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

app/src/processing/app/Library.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,13 @@ private Library(File folder, String groupName) {
114114
libraryFolder = new File(folder, "library");
115115
examplesFolder = new File(folder, "examples");
116116
referenceFile = new File(folder, "reference/index.html");
117+
}
118+
117119

120+
/**
121+
* Handles all the Java-specific parsing for library handling.
122+
*/
123+
protected void handle() {
118124
File exportSettings = new File(libraryFolder, "export.txt");
119125
StringDict exportTable = exportSettings.exists() ?
120126
Util.readSettings(exportSettings) : new StringDict();

0 commit comments

Comments
 (0)