Skip to content

Commit

Permalink
Code cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrriis committed Nov 20, 2011
1 parent 23712fc commit a5130fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public Process createProcess(String[] classpathItems, Map<String, String> system
// This is not a perfect escaping, but there does not seem to be one. Try to show with quotes: "c:\temp", "c:\temp\", and "c:\temp\\"...
value = value.replace("\\\"", "\"").replace("\"", "\\\"");
}
argList.add("-D" + propertyEntry.getKey() + "=" + value);
argList.add("-D" + propertyEntry.getKey() + "=" + value);
}
// Class path.
argList.add("-classpath");
Expand Down

0 comments on commit a5130fe

Please sign in to comment.