Skip to content

Commit a64fd32

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 95be0dc commit a64fd32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gxweb/src/main/java/com/genexus/internet/HttpAjaxContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -811,7 +811,7 @@ private JSONObjectWrapper getGxObject(JSONArray array, String CmpContext, boolea
811811
int len = array.length();
812812
for(int i=0; i<len; i++)
813813
{
814-
obj = new JSONObjectWrapper(array.getJSONObject(i));
814+
obj = (JSONObjectWrapper)array.getJSONObject(i);
815815
if (obj.getBoolean("IsMasterPage") == IsMasterPage && obj.getString("CmpContext").equals(CmpContext))
816816
{
817817
return obj;

0 commit comments

Comments
 (0)