Skip to content

Commit

Permalink
Deprecate Gson.excluder() exposing internal Excluder class
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcono1234 committed Oct 24, 2021
1 parent e6fae59 commit e9921d8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions gson/src/main/java/com/google/gson/Gson.java
Expand Up @@ -299,18 +299,40 @@ public GsonBuilder newBuilder() {
return new GsonBuilder(this);
}

/**
* @deprecated This method by accident exposes an internal Gson class; it might be removed in a
* future version.
*/
@Deprecated
public Excluder excluder() {
return excluder;
}

/**
* Returns the field naming strategy used by this Gson instance.
*
* @see GsonBuilder#setFieldNamingStrategy(FieldNamingStrategy)
*/
public FieldNamingStrategy fieldNamingStrategy() {
return fieldNamingStrategy;
}

/**
* Returns whether this Gson instance is serializing JSON object properties with
* {@code null} values, or just omits them.
*
* @see GsonBuilder#serializeNulls()
*/
public boolean serializeNulls() {
return serializeNulls;
}

/**
* Returns whether this Gson instance produces JSON output which is
* HTML-safe, that means all HTML characters are escaped.
*
* @see GsonBuilder#disableHtmlEscaping()
*/
public boolean htmlSafe() {
return htmlSafe;
}
Expand Down
2 changes: 1 addition & 1 deletion gson/src/test/java/com/google/gson/GsonTest.java
Expand Up @@ -55,7 +55,7 @@ public void testOverridesDefaultExcluder() {
new ArrayList<TypeAdapterFactory>(), new ArrayList<TypeAdapterFactory>(),
CUSTOM_OBJECT_TO_NUMBER_STRATEGY, CUSTOM_NUMBER_TO_NUMBER_STRATEGY);

assertEquals(CUSTOM_EXCLUDER, gson.excluder());
assertEquals(CUSTOM_EXCLUDER, gson.excluder);
assertEquals(CUSTOM_FIELD_NAMING_STRATEGY, gson.fieldNamingStrategy());
assertEquals(true, gson.serializeNulls());
assertEquals(false, gson.htmlSafe());
Expand Down

0 comments on commit e9921d8

Please sign in to comment.