Skip to content

Commit

Permalink
Avoid spaces in JSON output
Browse files Browse the repository at this point in the history
  • Loading branch information
olpaw committed Jan 30, 2023
1 parent c5db297 commit 353c12e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ private static Manifest createManifest() {

private static void printPathMapping(Map.Entry<Path, Path> entry, JsonWriter w) throws IOException {
w.append('{').quote(substitutionMapSrcField).append(" : ").quote(entry.getKey());
w.append(", ").quote(substitutionMapDstField).append(" : ").quote(entry.getValue());
w.append(',').quote(substitutionMapDstField).append(':').quote(entry.getValue());
w.append('}');
}

Expand Down

0 comments on commit 353c12e

Please sign in to comment.