Arrays.asList()
value deserialization has changed from mutable to immutable in 2.13
#3565
Milestone
Arrays.asList()
value deserialization has changed from mutable to immutable in 2.13
#3565
During the restructuring of the JavaUtilCollectionsDeserializers (#2900) class the type for Arrays#ArrayList was changed from modifiable to unmodifiable.
This means you can no longer call methods like List#set on the deserialized List.
Since 2.13
https://github.com/FasterXML/jackson-databind/blame/0016185419e35dc903d0098689cb00326500f054/src/main/java/com/fasterxml/jackson/databind/deser/impl/JavaUtilCollectionsDeserializers.java#L86
Before 2.13
jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/JavaUtilCollectionsDeserializers.java
Line 74 in 2e494a9
The text was updated successfully, but these errors were encountered: