@@ -1096,7 +1096,7 @@ private static void setTheEnvironmentVariablesPostProcessing(IContributedEnviron
1096
1096
setBuildEnvironmentVariable (contribEnv , confDesc , get_ENV_KEY_TOOL (ACTION_PROGRAM ), uploadTool );
1097
1097
}
1098
1098
1099
- String objcopyCommand = "" ;
1099
+ String objcopyCommand = Const . EMPTY_STRING ;
1100
1100
String objcopyCommandLinker = objcopyCommand ;
1101
1101
1102
1102
// I'm looping through the set of variables to fix some things up
@@ -1126,16 +1126,16 @@ private static void setTheEnvironmentVariablesPostProcessing(IContributedEnviron
1126
1126
}
1127
1127
setBuildEnvironmentVariable (contribEnv , confDesc , name , recipe );
1128
1128
}
1129
- if (name .startsWith ("A.RECIPE.OBJCOPY." ) && name .endsWith (".PATTERN" )) {
1129
+ if (name .startsWith ("A.RECIPE.OBJCOPY." ) && name .endsWith (".PATTERN" )) { //$NON-NLS-1$ //$NON-NLS-2$
1130
1130
objcopyCommand += objcopyCommandLinker + makeEnvironmentVar (name );
1131
- objcopyCommandLinker = "\n \t " ;
1131
+ objcopyCommandLinker = "\n \t " ; //$NON-NLS-1$
1132
1132
}
1133
1133
}
1134
1134
1135
1135
} catch (Exception e ) {
1136
1136
Common .log (new Status (IStatus .WARNING , Const .CORE_PLUGIN_ID , "parsing of upload recipe failed" , e )); //$NON-NLS-1$
1137
1137
}
1138
- setBuildEnvironmentVariable (contribEnv , confDesc , "JANTJE.OBJCOPY" , objcopyCommand );
1138
+ setBuildEnvironmentVariable (contribEnv , confDesc , "JANTJE.OBJCOPY" , objcopyCommand ); //$NON-NLS-1$
1139
1139
1140
1140
// link build.core to jantje.build.core
1141
1141
setBuildEnvironmentVariable (contribEnv , confDesc , ENV_KEY_BUILD_CORE ,
0 commit comments