Skip to content

Commit 86990fc

Browse files
committed
Merge branch '2.14'
2 parents 247f164 + 3b68af3 commit 86990fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/fasterxml/jackson/databind/DeserializationFeature.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -374,10 +374,10 @@ public enum DeserializationFeature implements ConfigFeature
374374
* Feature that allows unknown Enum values to be parsed as null values.
375375
* If disabled, unknown Enum values will throw exceptions.
376376
*<p>
377-
* Note that in some cases this will basically ignore unknown Enum values;
378-
* this is the keys for keys of {@link java.util.EnumMap} and values
379-
* of {@link java.util.EnumSet} (because nulls are not accepted in these
380-
* cases).
377+
* Note that in some cases this will in effect ignore unknown Enum values,
378+
* e.g. when the unknown values are used as keys of {@link java.util.EnumMap}
379+
* or values of {@link java.util.EnumSet}, given the current deserializer
380+
* implementation that ignores entries with null keys.
381381
*<p>
382382
* Feature is disabled by default.
383383
*/

0 commit comments

Comments
 (0)