Skip to content

Commit 353c12e

Browse files
committed
Avoid spaces in JSON output
1 parent c5db297 commit 353c12e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.driver/src/com/oracle/svm/driver/BundleSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ private static Manifest createManifest() {
648648

649649
private static void printPathMapping(Map.Entry<Path, Path> entry, JsonWriter w) throws IOException {
650650
w.append('{').quote(substitutionMapSrcField).append(" : ").quote(entry.getKey());
651-
w.append(", ").quote(substitutionMapDstField).append(" : ").quote(entry.getValue());
651+
w.append(',').quote(substitutionMapDstField).append(':').quote(entry.getValue());
652652
w.append('}');
653653
}
654654

0 commit comments

Comments
 (0)