Skip to content

Commit f1622dc

Browse files
committed
Merge branch 'master' of github.com:FasterXML/jackson-databind
2 parents dce9e1b + 26f8fa2 commit f1622dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ If you have POJO values, you need to indicate actual type (note: this is NOT nee
116116

117117
```java
118118
Map<String, ResultValue> results = mapper.readValue(jsonSource,
119-
new TypeReference<String, ResultValue>() { } );
119+
new TypeReference<Map<String, ResultValue>>() { } );
120120
// why extra work? Java Type Erasure will prevent type detection otherwise
121121
```
122122

0 commit comments

Comments
 (0)