Skip to content

Commit d8cf0c9

Browse files
author
jantje
committed
#1268 uploadtool is not a config field
1 parent 7f239c1 commit d8cf0c9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

io.sloeber.core/src/io/sloeber/core/api/BoardDescription.java

-3
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ public class BoardDescription {
9898
private final String KEY_SLOEBER_BOARD_TXT = "BOARD.TXT"; //$NON-NLS-1$
9999
private final String KEY_SLOEBER_BOARD_ID = "BOARD.ID"; //$NON-NLS-1$
100100
private final String KEY_SLOEBER_UPLOAD_PORT = "UPLOAD.PORT"; //$NON-NLS-1$
101-
private final String KEY_SLOEBER_UPLOAD_TOOL = "UPLOAD.TOOL"; //$NON-NLS-1$
102101
private final String KEY_SLOEBER_MENU_SELECTION = "BOARD.MENU"; //$NON-NLS-1$
103102

104103

@@ -763,7 +762,6 @@ private Map<String, String> getEnvVarsTxt() {
763762
this.myBoardID = section.getValue(KEY_SLOEBER_BOARD_ID);
764763
String board_txt = section.getValue(KEY_SLOEBER_BOARD_TXT);
765764
this.myUploadPort = section.getValue(KEY_SLOEBER_UPLOAD_PORT);
766-
this.myUploadTool = section.getValue(KEY_SLOEBER_UPLOAD_TOOL);
767765
KeyValueTree optionsTree = section.getChild(KEY_SLOEBER_MENU_SELECTION);
768766
Map<String, String> options = optionsTree.toKeyValues(EMPTY, false);
769767

@@ -809,7 +807,6 @@ public Map<String, String> getEnvVarsConfig(String prefix) {
809807
allVars.put(prefix + KEY_SLOEBER_BOARD_ID, myBoardID);
810808
allVars.put(prefix + KEY_SLOEBER_BOARD_TXT, board_txt);
811809
allVars.put(prefix + KEY_SLOEBER_UPLOAD_PORT, myUploadPort);
812-
allVars.put(prefix + KEY_SLOEBER_UPLOAD_TOOL, myUploadTool);
813810

814811
for (Entry<String, String> curOption : myOptions.entrySet()) {
815812
allVars.put(prefix + KEY_SLOEBER_MENU_SELECTION + DOT + curOption.getKey(), curOption.getValue());

0 commit comments

Comments
 (0)