Skip to content

Commit

Permalink
Update JSONObject.java
Browse files Browse the repository at this point in the history
  • Loading branch information
deadlious authored and dkulp committed Jun 9, 2022
1 parent f35baef commit e0a8758
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/org/codehaus/jettison/json/JSONObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -1350,6 +1350,7 @@ public Writer write(Writer writer) throws JSONException {
while (keys.hasNext()) {
if (b) {
writer.write(',');
b = false;
}
String k = keys.next().toString();
Object v = this.myHashMap.get(k);
Expand Down

0 comments on commit e0a8758

Please sign in to comment.