We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dbbfe8 commit feed9cfCopy full SHA for feed9cf
common/src/main/java/com/genexus/json/JSONTokenerWrapper.java
@@ -1,5 +1,6 @@
1
package com.genexus.json;
2
3
+import org.json.JSONObject;
4
import org.json.JSONTokener;
5
import org.json.JSONException;
6
@@ -14,7 +15,7 @@ public Object nextValue() throws JSONException {
14
15
this.back();
16
if (c == '{') {
17
try {
- return new JSONObjectWrapper(this);
18
+ return new JSONObjectWrapper((JSONObject) super.nextValue());
19
} catch (StackOverflowError e) {
20
throw new JSONException("JSON Array or Object depth too large to process.", e);
21
}
0 commit comments