mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-29 10:24:12 +01:00
Removed unused variables. Small cosmetic changes.
This commit is contained in:
parent
83ede8fdb4
commit
e3dc5e75e3
@ -305,8 +305,8 @@ public class Base {
|
||||
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 {
|
||||
platform.init(this);
|
||||
|
||||
@ -359,10 +359,8 @@ public class Base {
|
||||
|
||||
ACTION action = ACTION.GUI;
|
||||
boolean doVerboseBuild = false;
|
||||
boolean doVerboseUpload = false;;
|
||||
boolean doVerboseUpload = false;
|
||||
String getPref = null;
|
||||
String selectBoard = null;
|
||||
String selectPort = null;
|
||||
List<String> filenames = new LinkedList<String>();
|
||||
|
||||
// Map of possible actions and corresponding options
|
||||
|
Loading…
Reference in New Issue
Block a user