mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-14 11:29:26 +01:00
Removed unused Base.getBoardsViaNetwork() and related member.
This commit is contained in:
parent
e994c52729
commit
9bc1824b96
@ -127,7 +127,6 @@ public class Base {
|
|||||||
// int editorCount;
|
// int editorCount;
|
||||||
List<Editor> editors = Collections.synchronizedList(new ArrayList<Editor>());
|
List<Editor> editors = Collections.synchronizedList(new ArrayList<Editor>());
|
||||||
Editor activeEditor;
|
Editor activeEditor;
|
||||||
private final Map<String, Map<String, Object>> boardsViaNetwork;
|
|
||||||
|
|
||||||
static File portableFolder = null;
|
static File portableFolder = null;
|
||||||
static final String portableSketchbookFolder = "sketchbook";
|
static final String portableSketchbookFolder = "sketchbook";
|
||||||
@ -310,8 +309,6 @@ public class Base {
|
|||||||
public Base(String[] args) throws Exception {
|
public Base(String[] args) throws Exception {
|
||||||
platform.init(this);
|
platform.init(this);
|
||||||
|
|
||||||
this.boardsViaNetwork = new ConcurrentHashMap<String, Map<String, Object>>();
|
|
||||||
|
|
||||||
// Get the sketchbook path, and make sure it's set properly
|
// Get the sketchbook path, and make sure it's set properly
|
||||||
String sketchbookPath = Preferences.get("sketchbook.path");
|
String sketchbookPath = Preferences.get("sketchbook.path");
|
||||||
|
|
||||||
@ -616,10 +613,6 @@ public class Base {
|
|||||||
Preferences.set(split[0], split[1]);
|
Preferences.set(split[0], split[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Map<String, Map<String, Object>> getBoardsViaNetwork() {
|
|
||||||
return new HashMap<String, Map<String, Object>>(boardsViaNetwork);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Post-constructor setup for the editor area. Loads the last
|
* Post-constructor setup for the editor area. Loads the last
|
||||||
* sketch that was used (if any), and restores other Editor settings.
|
* sketch that was used (if any), and restores other Editor settings.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user