Skip to content

Remove final on inherited methods in BuilderBasedDeserializer to allow overriding by subclasses. #1870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ protected final Object finishBuild(DeserializationContext ctxt, Object builder)
* Main deserialization method for bean-based objects (POJOs).
*/
@Override
public final Object deserialize(JsonParser p, DeserializationContext ctxt)
public Object deserialize(JsonParser p, DeserializationContext ctxt)
throws IOException
{
// common case first:
Expand Down Expand Up @@ -334,7 +334,7 @@ public Object deserializeFromObject(JsonParser p, DeserializationContext ctxt)
*/
@Override
@SuppressWarnings("resource")
protected final Object _deserializeUsingPropertyBased(final JsonParser p,
protected Object _deserializeUsingPropertyBased(final JsonParser p,
final DeserializationContext ctxt)
throws IOException
{
Expand Down