File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/kotlin/tools/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,10 @@ enum class KotlinFeature(internal val enabledByDefault: Boolean) {
44
44
* Internally, it will be the same as if [JsonSetter] (contentNulls = FAIL) had been granted.
45
45
*
46
46
* Benchmarks show that it can check for illegal nulls with throughput nearly identical to the default (see [jackson-module-kotlin#719]).
47
+ *
48
+ * Since 3.0, this option is enabled by default.
47
49
*/
48
- StrictNullChecks (enabledByDefault = false ),
50
+ StrictNullChecks (enabledByDefault = true ),
49
51
50
52
/* *
51
53
* By enabling this feature, the property name on Kotlin is used as the implicit name for the getter.
@@ -81,8 +83,6 @@ enum class KotlinFeature(internal val enabledByDefault: Boolean) {
81
83
* This is a temporary option for a phased backend migration,
82
84
* which will eventually be merged into [StrictNullChecks].
83
85
* Also, specifying both this and [StrictNullChecks] is not permitted.
84
- *
85
- * Since 3.0, this option is enabled by default.
86
86
*/
87
87
@Deprecated(
88
88
level = DeprecationLevel .WARNING ,
You can’t perform that action at this time.
0 commit comments