SetMultimap should be deserialized to a LinkedHashMultimap by default #25
Labels
good first issue
Issue that seems easy to resolve and is likely a good candidate for contributors new to project
guava
Milestone
Currently, when deserializing to a field declared simply as a
SetMultimap
, aHashMultimap
is used as the implementation. This is at odds with Jackson's default behavior for normalMap
s where aLinkedHashMap
is used to preserve the ordering present in the JSON. It seems like the Guava module should analogously useLinkedHashMultimap
as the defaultSetMultimap
implementation.The text was updated successfully, but these errors were encountered: