From 9bc1824b96468050c590e980327a079c6c8d7e59 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Tue, 26 Aug 2014 16:31:06 +0200 Subject: [PATCH] Removed unused Base.getBoardsViaNetwork() and related member. --- app/src/processing/app/Base.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index dee3103de..fb7b302cf 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -127,7 +127,6 @@ public class Base { // int editorCount; List editors = Collections.synchronizedList(new ArrayList()); Editor activeEditor; - private final Map> boardsViaNetwork; static File portableFolder = null; static final String portableSketchbookFolder = "sketchbook"; @@ -310,8 +309,6 @@ public class Base { public Base(String[] args) throws Exception { platform.init(this); - this.boardsViaNetwork = new ConcurrentHashMap>(); - // Get the sketchbook path, and make sure it's set properly String sketchbookPath = Preferences.get("sketchbook.path"); @@ -616,10 +613,6 @@ public class Base { Preferences.set(split[0], split[1]); } - public Map> getBoardsViaNetwork() { - return new HashMap>(boardsViaNetwork); - } - /** * Post-constructor setup for the editor area. Loads the last * sketch that was used (if any), and restores other Editor settings.