Skip to content

Commit 48a71ab

Browse files
author
liyuj
authored
Update DateDeserializers.java
1 parent f84f461 commit 48a71ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ public java.sql.Timestamp deserialize(JsonParser jp, DeserializationContext ctxt
310310
if (d == null){
311311
return null;
312312
}else{
313-
return new Timestamp(_parseDate(jp, ctxt).getTime());
313+
return new Timestamp(d.getTime());
314314
}
315315
}
316316
}

0 commit comments

Comments
 (0)