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 cf6f413 commit 04ce7fdCopy full SHA for 04ce7fd
common/src/main/java/com/genexus/json/JSONTokenerWrapper.java
@@ -1,6 +1,5 @@
1
package com.genexus.json;
2
3
-import org.json.JSONObject;
4
import org.json.JSONTokener;
5
import org.json.JSONException;
6
@@ -15,7 +14,7 @@ public Object nextValue() throws JSONException {
15
14
this.back();
16
if (c == '{') {
17
try {
18
- return new JSONObjectWrapper((JSONObject) super.nextValue());
+ return new JSONObjectWrapper(this);
19
} catch (StackOverflowError e) {
20
throw new JSONException("JSON Array or Object depth too large to process.", e);
21
}
0 commit comments