Skip to content

Commit 3975a0f

Browse files
committed
Merge branch '2.6'
2 parents 6721d90 + e258ee6 commit 3975a0f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/com/fasterxml/jackson/databind/type/RecursiveType938Test.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,12 @@ public void testRecursivePair() throws Exception
4747
assertNotNull(t);
4848
assertEquals(ImmutablePair.class, t.getRawClass());
4949

50-
/*
5150
List<ImmutablePair<String, Double>> list = new ArrayList<ImmutablePair<String, Double>>();
5251
list.add(ImmutablePair.of("Hello World!", 123d));
5352
String json = MAPPER.writeValueAsString(list);
53+
5454
assertNotNull(json);
55-
*/
55+
56+
// can not deserialize with current definition, however
5657
}
5758
}

0 commit comments

Comments
 (0)