Skip to content

Commit

Permalink
Removing 'final' accessor from constructor (#1501)
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelkollus authored and inder123 committed Mar 28, 2019
1 parent 8bf2949 commit 5370b07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gson/src/main/java/com/google/gson/Gson.java
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ public Gson() {
Collections.<TypeAdapterFactory>emptyList());
}

Gson(final Excluder excluder, final FieldNamingStrategy fieldNamingStrategy,
final Map<Type, InstanceCreator<?>> instanceCreators, boolean serializeNulls,
Gson(Excluder excluder, FieldNamingStrategy fieldNamingStrategy,
Map<Type, InstanceCreator<?>> instanceCreators, boolean serializeNulls,
boolean complexMapKeySerialization, boolean generateNonExecutableGson, boolean htmlSafe,
boolean prettyPrinting, boolean lenient, boolean serializeSpecialFloatingPointValues,
LongSerializationPolicy longSerializationPolicy, String datePattern, int dateStyle,
Expand Down

0 comments on commit 5370b07

Please sign in to comment.