diff --git a/app/src/processing/app/Library.java b/app/src/processing/app/Library.java index 1ee19e7ec..045a2902a 100644 --- a/app/src/processing/app/Library.java +++ b/app/src/processing/app/Library.java @@ -114,7 +114,13 @@ public class Library extends LocalContribution { libraryFolder = new File(folder, "library"); examplesFolder = new File(folder, "examples"); referenceFile = new File(folder, "reference/index.html"); + } + + /** + * Handles all the Java-specific parsing for library handling. + */ + protected void handle() { File exportSettings = new File(libraryFolder, "export.txt"); StringDict exportTable = exportSettings.exists() ? Util.readSettings(exportSettings) : new StringDict();