Skip to content

Commit e3dc5e7

Browse files
committed
Removed unused variables. Small cosmetic changes.
1 parent 83ede8f commit e3dc5e7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

app/src/processing/app/Base.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@ static public File absoluteFile(String path) {
305305
return file;
306306
}
307307

308+
protected static enum ACTION { GUI, NOOP, VERIFY, UPLOAD, GET_PREF };
308309

309-
protected static enum ACTION { GUI, VERIFY, UPLOAD, NOOP, GET_PREF };
310310
public Base(String[] args) throws Exception {
311311
platform.init(this);
312312

@@ -359,10 +359,8 @@ public Base(String[] args) throws Exception {
359359

360360
ACTION action = ACTION.GUI;
361361
boolean doVerboseBuild = false;
362-
boolean doVerboseUpload = false;;
362+
boolean doVerboseUpload = false;
363363
String getPref = null;
364-
String selectBoard = null;
365-
String selectPort = null;
366364
List<String> filenames = new LinkedList<String>();
367365

368366
// Map of possible actions and corresponding options

0 commit comments

Comments
 (0)