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
Currently getFactory() on ObjectMapper which returns an instance of JsonFactory is considered mutable because there are method(s) on the JsonFactory to control settings. Therefore, you are forced to use a mutable ObjectMapper if using stream serialization (as opposed to full object mapping). The immutability should be extended to include an immutable JsonFactory accessible by getFactory on immutable ObjectMapper instances.
The text was updated successfully, but these errors were encountered:
Currently getFactory() on ObjectMapper which returns an instance of JsonFactory is considered mutable because there are method(s) on the JsonFactory to control settings. Therefore, you are forced to use a mutable ObjectMapper if using stream serialization (as opposed to full object mapping). The immutability should be extended to include an immutable JsonFactory accessible by getFactory on immutable ObjectMapper instances.
The text was updated successfully, but these errors were encountered: