Skip to content

Commit fe9616b

Browse files
pjfanningcowtowncoder
authored andcommitted
fix _handleIncompatibleUpdateValue
1 parent 0359e64 commit fe9616b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/fasterxml/jackson/databind/deser/std/StdDelegatingDeserializer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ protected Object _handleIncompatibleUpdateValue(JsonParser p, DeserializationCon
237237
throws IOException
238238
{
239239
throw new UnsupportedOperationException(String.format
240-
("Cannot update object of type %s (using deserializer for type %s)"
241-
+intoValue.getClass().getName(), _delegateType));
240+
("Cannot update object of type %s (using deserializer for type %s)",
241+
intoValue.getClass().getName(), _delegateType));
242242
}
243243

244244
/*

0 commit comments

Comments
 (0)