Skip to content

Commit 95be0dc

Browse files
committed
Remove org.json lib fork and use new version of the API https://github.com/stleary/JSON-java
Issue: 105607 d844074
1 parent 75563b2 commit 95be0dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/main/java/com/genexus/webpanels/GXMultiCall.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ public static void callProcRest(ModelContext context, String jsonStr) throws Exc
8585
Object [] params = new Object[parmCount];
8686
for(int j = 0; j < parmCount; j++)
8787
{
88-
params[j] = GXutil.convertObjectTo(procParms.getString(j), parameters[j]);
88+
params[j] = GXutil.convertObjectTo(procParms.get(j).toString(), parameters[j]);
8989
}
9090
com.genexus.db.DynamicExecute.dynamicExecute(modelContext, remoteHandle, modelContext.packageClass, appPackage + procName, params);
9191
}

0 commit comments

Comments
 (0)