We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b254aff commit 96f3454Copy full SHA for 96f3454
src/test/java/com/fasterxml/jackson/databind/jsontype/PolymorphicViaRefTypeTest.java
@@ -40,9 +40,7 @@ public void testOptionalWithAtomic() throws Exception
40
TypeInfoAtomic data = new TypeInfoAtomic();
41
data.value = new AtomicReference<BaseForAtomic>(new ImplForAtomic(42));
42
String json = MAPPER.writeValueAsString(data);
43
-System.err.println("JSON = "+json);
44
TypeInfoAtomic result = MAPPER.readValue(json, TypeInfoAtomic.class);
45
assertNotNull(result);
46
}
47
-
48
0 commit comments