Skip to content

Commit

Permalink
set deserializeNonexistentClass default value to false
Browse files Browse the repository at this point in the history
  • Loading branch information
chaokunyang committed Nov 6, 2024
1 parent 9962c3e commit 4e50a98
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ public interface FuryBuildTimeConfig {
* Whether deserialize/skip data of un-existed class. If not enabled, an exception will be thrown
* if class not exist.
*/
@WithDefault("true")
@WithDefault("false")
boolean deserializeNonexistentClass();

/** If an enum value doesn't exist, return a null instead of throws exception. */
@WithDefault("true")
@WithDefault("false")
boolean deserializeNonexistentEnumValueAsNull();

/** Whether to use thread safe fury. The default is true. */
Expand Down

0 comments on commit 4e50a98

Please sign in to comment.