OpenAPITools / jackson-databind-nullable

JsonNullable wrapper class and Jackson module to support meaningful null values
Apache License 2.0
103 stars 30 forks source link

Issue #12 - No need to validate values for JsonNullable.undefined() #13

Closed VictorKrapivin closed 5 years ago

VictorKrapivin commented 5 years ago

JsonNullableValueExtractor changed: when field value is JsonNullable#undefined() (i.e. JsonNullable#isPresent() gives false) - then skip passing value to receiver for validation. So validation will not be applied.

cbornet commented 5 years ago

Thanks a lot !