Skip to content

Commit 926766a

Browse files
authored
Remove final from ObjectMapper.readValue(JsonParser, ResolvedType) (#5443)
1 parent 1d6e5d5 commit 926766a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/tools/jackson/databind/ObjectMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1022,7 +1022,7 @@ public <T> T readValue(JsonParser p, TypeReference<T> valueTypeRef) throws Jacks
10221022
* expected for result type (or has other mismatch issues)
10231023
*/
10241024
@SuppressWarnings("unchecked")
1025-
public final <T> T readValue(JsonParser p, ResolvedType valueType) throws JacksonException
1025+
public <T> T readValue(JsonParser p, ResolvedType valueType) throws JacksonException
10261026
{
10271027
_assertNotNull("p", p);
10281028
return (T) _readValue(_deserializationContext(p), p, (JavaType) valueType);

0 commit comments

Comments
 (0)