Skip to content

Commit

Permalink
Remove the final keyword from private method (google#2276)
Browse files Browse the repository at this point in the history
(cherry picked from commit 28affcb)
  • Loading branch information
MaicolAntali authored and tibor-universe committed Jan 18, 2023
1 parent 5e58e70 commit d9a9e1b
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 d9a9e1b

Please sign in to comment.