-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JSON parsing self reference object and array #823
Conversation
@sk02241994 Out of sync, please merge master to your branch. |
9b090d1
to
2dd0f83
Compare
@stleary master is merged to my branch. |
- Recursive depth issue found in JSONObject - Recursive depth issue found in JSONArray
d493fee
to
abea194
Compare
@sk02241994 For now, we just want |
* @param value | ||
* The Map value. | ||
* @param jsonParserConfiguration | ||
* Configuration for recursive depth |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please just call this a configuration object. The things that it can configure will change going forward
* | ||
* @param recursionDepth | ||
* Variable to keep the count of how nested the object creation is happening. | ||
* @param recursionDepth |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change to jsonParserConfiguration
@sk02241994 Looks good, couple remaining items to clean up, nothing functional though. |
fa8ad5d
to
7701f21
Compare
What problem does this code solve? Does the code still compile with Java6? Risks Changes to the API? Will this require a new release? Should the documentation be updated? Does it break the unit tests? Was any code refactored in this commit? Review status Starting 3-day comment window |
Fix for issue #743
Self reference issue found in JSONObject and JSONArray