Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.4.2
Description
In Tapestry 5.4.2, the constructor public JSONObject(JSONObject source, String... propertyNames) changed to public JSONObject(JSONObject copyFrom, String[] names). That means that you can no longer use
new JSONObject(source, "key1")
. You can use
new JSONObject(source, new String[]{"key1"})
as a workaround.
Attachments
Issue Links
- is broken by
-
TAP5-2575 Replace json.org-licensed classes with Apache-compatible versions
- Closed