You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 20250107 release of the strictMode feature includes JSONTokener getter and setter methods for the JSONParserConfiguration instance. These methods are no longer needed since the config instance has been added to the JSONTokener constructor. In particular, the setter could allow a developer to introduce unexpected behavior. Other solutions may be possible, but the following is recommended:
Getter: Annotate @deprecated. Otherwise, it's probably harmless, no change.
Setter: Annotate @deprecated. Consider silently ignoring the param if it is null.
The text was updated successfully, but these errors were encountered:
The 20250107 release of the strictMode feature includes JSONTokener getter and setter methods for the JSONParserConfiguration instance. These methods are no longer needed since the config instance has been added to the JSONTokener constructor. In particular, the setter could allow a developer to introduce unexpected behavior. Other solutions may be possible, but the following is recommended:
Getter: Annotate @deprecated. Otherwise, it's probably harmless, no change.
Setter: Annotate @deprecated. Consider silently ignoring the param if it is null.
The text was updated successfully, but these errors were encountered: