We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60789a7 commit ac55787Copy full SHA for ac55787
launcher/src/main/java/org/apache/spark/launcher/Main.java
@@ -103,7 +103,7 @@ public static void main(String[] argsArray) throws Exception {
103
* quoting and other batch script fun stuff: http://ss64.com/nt/syntax-esc.html
104
*/
105
private static String prepareWindowsCommand(List<String> cmd, Map<String, String> childEnv) {
106
- StringBuilder cmdline = new StringBuilder("");
+ StringBuilder cmdline = new StringBuilder();
107
for (Map.Entry<String, String> e : childEnv.entrySet()) {
108
cmdline.append(String.format("set %s=%s", e.getKey(), e.getValue()));
109
cmdline.append(" && ");
0 commit comments