Skip to content

Commit 6ae833f

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 8611985 commit 6ae833f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gxweb/src/main/java/com/genexus/webpanels/GXWebPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ private void parseMetadata() {
684684
}
685685
}
686686

687-
private void SetNullableScalarOrCollectionValue(JSONObjectWrapper parm, Object value, JSONArray columnValues) throws JSONException, Exception
687+
private void SetNullableScalarOrCollectionValue(JSONObject parm, Object value, JSONArray columnValues) throws JSONException, Exception
688688
{
689689
String nullableAttribute = parm.optString("nullAv", null);
690690
if (nullableAttribute != null && value.toString().length() == 0)
@@ -877,7 +877,7 @@ private Object[] beforeInvoke() throws JSONException, Exception {
877877
int len = dynAjaxEventContext.inParmsMetadata.length();
878878
boolean multipart = targetObj.httpContext.isMultipartContent();
879879
for (int i = 0; i < len; i++) {
880-
JSONObjectWrapper parm = (JSONObjectWrapper) dynAjaxEventContext.inParmsMetadata.getJSONObject(i);
880+
JSONObject parm = (JSONObject) dynAjaxEventContext.inParmsMetadata.getJSONObject(i);
881881
try{
882882
if (parm.has("postForm"))
883883
{

0 commit comments

Comments
 (0)