From 5370b076e329444860b0ea0c7f33b10504281f27 Mon Sep 17 00:00:00 2001 From: Manuel Kollus <42355796+manuelkollus@users.noreply.github.com> Date: Thu, 28 Mar 2019 17:22:36 +0100 Subject: [PATCH] Removing 'final' accessor from constructor (#1501) --- gson/src/main/java/com/google/gson/Gson.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gson/src/main/java/com/google/gson/Gson.java b/gson/src/main/java/com/google/gson/Gson.java index 0cb171c7..27f3ee92 100644 --- a/gson/src/main/java/com/google/gson/Gson.java +++ b/gson/src/main/java/com/google/gson/Gson.java @@ -192,8 +192,8 @@ public final class Gson { Collections.emptyList()); } - Gson(final Excluder excluder, final FieldNamingStrategy fieldNamingStrategy, - final Map> instanceCreators, boolean serializeNulls, + Gson(Excluder excluder, FieldNamingStrategy fieldNamingStrategy, + Map> instanceCreators, boolean serializeNulls, boolean complexMapKeySerialization, boolean generateNonExecutableGson, boolean htmlSafe, boolean prettyPrinting, boolean lenient, boolean serializeSpecialFloatingPointValues, LongSerializationPolicy longSerializationPolicy, String datePattern, int dateStyle,