Skip to content

Commit 5f66ab7

Browse files
committed
Remove org.json lib fork and use new version of the API https://github.com/stleary/JSON-java
Issue: 105607
1 parent a64fd32 commit 5f66ab7

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

common/src/main/java/com/genexus/json/JSONObjectWrapper.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ public JSONObjectWrapper put(String key, Object value) throws JSONException {
5959
super.put(key, value);
6060
if (map == null)
6161
map = new LinkedHashMap<String, Object>();
62-
if (!map.containsKey(key))
63-
map.put(key, value);
62+
map.put(key, value);
6463
return this;
6564
}
6665

0 commit comments

Comments
 (0)