Skip to content
This repository was archived by the owner on Jan 20, 2025. It is now read-only.

Commit c5697ff

Browse files
committed
Add fix for issue #67
1 parent ec1ceed commit c5697ff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/fasterxml/jackson/datatype/guava/GuavaDeserializers.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,9 @@ public JsonDeserializer<?> findMapLikeDeserializer(MapLikeType type,
197197
}
198198

199199
if (ImmutableSetMultimap.class.isAssignableFrom(raw)) {
200-
// TODO
200+
// [Issue#67]: Preserve order of entries
201+
return new LinkedHashMultimapDeserializer(type, keyDeserializer,
202+
elementTypeDeserializer, elementDeserializer);
201203
}
202204
if (HashMultimap.class.isAssignableFrom(raw)) {
203205
return new HashMultimapDeserializer(type, keyDeserializer, elementTypeDeserializer,

0 commit comments

Comments
 (0)