mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
Removed unused variables. Small cosmetic changes.
This commit is contained in:
@ -305,8 +305,8 @@ public class Base {
|
|||||||
return file;
|
return file;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected static enum ACTION { GUI, NOOP, VERIFY, UPLOAD, GET_PREF };
|
||||||
|
|
||||||
protected static enum ACTION { GUI, VERIFY, UPLOAD, NOOP, GET_PREF };
|
|
||||||
public Base(String[] args) throws Exception {
|
public Base(String[] args) throws Exception {
|
||||||
platform.init(this);
|
platform.init(this);
|
||||||
|
|
||||||
@ -359,10 +359,8 @@ public class Base {
|
|||||||
|
|
||||||
ACTION action = ACTION.GUI;
|
ACTION action = ACTION.GUI;
|
||||||
boolean doVerboseBuild = false;
|
boolean doVerboseBuild = false;
|
||||||
boolean doVerboseUpload = false;;
|
boolean doVerboseUpload = false;
|
||||||
String getPref = null;
|
String getPref = null;
|
||||||
String selectBoard = null;
|
|
||||||
String selectPort = null;
|
|
||||||
List<String> filenames = new LinkedList<String>();
|
List<String> filenames = new LinkedList<String>();
|
||||||
|
|
||||||
// Map of possible actions and corresponding options
|
// Map of possible actions and corresponding options
|
||||||
|
Reference in New Issue
Block a user