Skip to content

Commit b607b8e

Browse files
committed
fix java params to use semicolon separator
1 parent 3b6756b commit b607b8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concoredocker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public static void main(String[] args) {
3636
}
3737
if (!sparams.equals("{")) {
3838
System.out.println("converting sparams: " + sparams);
39-
sparams = "{'" + sparams.replaceAll(",", ",'").replaceAll("=", "':").replaceAll(" ", "") + "}";
39+
sparams = "{'" + sparams.replaceAll(";", ",'").replaceAll("=", "':").replaceAll(" ", "") + "}";
4040
System.out.println("converted sparams: " + sparams);
4141
}
4242
try {

0 commit comments

Comments
 (0)