Skip to content

Commit

Permalink
Remove the final keyword from private method (#2276)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaicolAntali committed Dec 9, 2022
1 parent dcbc164 commit 28affcb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -62,7 +62,7 @@ protected DateType(Class<T> dateClass) {

protected abstract T deserialize(Date date);

private final TypeAdapterFactory createFactory(DefaultDateTypeAdapter<T> adapter) {
private TypeAdapterFactory createFactory(DefaultDateTypeAdapter<T> adapter) {
return TypeAdapters.newFactory(dateClass, adapter);
}

Expand Down

0 comments on commit 28affcb

Please sign in to comment.