From 27edbf5c85f4883f4bba13fd940b2a5d0dadf61c Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Tue, 16 Aug 2016 15:36:50 -0400 Subject: [PATCH] move the Java-specific parts into their own method --- app/src/processing/app/Library.java | 6 ++++++ 1 file changed, 6 insertions(+) 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();