@@ -98,7 +98,6 @@ public class BoardDescription {
98
98
private final String KEY_SLOEBER_BOARD_TXT = "BOARD.TXT" ; //$NON-NLS-1$
99
99
private final String KEY_SLOEBER_BOARD_ID = "BOARD.ID" ; //$NON-NLS-1$
100
100
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$
102
101
private final String KEY_SLOEBER_MENU_SELECTION = "BOARD.MENU" ; //$NON-NLS-1$
103
102
104
103
@@ -763,7 +762,6 @@ private Map<String, String> getEnvVarsTxt() {
763
762
this .myBoardID = section .getValue (KEY_SLOEBER_BOARD_ID );
764
763
String board_txt = section .getValue (KEY_SLOEBER_BOARD_TXT );
765
764
this .myUploadPort = section .getValue (KEY_SLOEBER_UPLOAD_PORT );
766
- this .myUploadTool = section .getValue (KEY_SLOEBER_UPLOAD_TOOL );
767
765
KeyValueTree optionsTree = section .getChild (KEY_SLOEBER_MENU_SELECTION );
768
766
Map <String , String > options = optionsTree .toKeyValues (EMPTY , false );
769
767
@@ -809,7 +807,6 @@ public Map<String, String> getEnvVarsConfig(String prefix) {
809
807
allVars .put (prefix + KEY_SLOEBER_BOARD_ID , myBoardID );
810
808
allVars .put (prefix + KEY_SLOEBER_BOARD_TXT , board_txt );
811
809
allVars .put (prefix + KEY_SLOEBER_UPLOAD_PORT , myUploadPort );
812
- allVars .put (prefix + KEY_SLOEBER_UPLOAD_TOOL , myUploadTool );
813
810
814
811
for (Entry <String , String > curOption : myOptions .entrySet ()) {
815
812
allVars .put (prefix + KEY_SLOEBER_MENU_SELECTION + DOT + curOption .getKey (), curOption .getValue ());
0 commit comments