We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 950c14b commit bd17c79Copy full SHA for bd17c79
src/main/kotlin/com/fasterxml/jackson/module/kotlin/KotlinFeature.kt
@@ -1,15 +1,14 @@
1
package com.fasterxml.jackson.module.kotlin
2
3
-import java.util.*
+import java.util.BitSet
4
import kotlin.math.pow
5
6
enum class KotlinFeature(val enabledByDefault: Boolean) {
7
-
8
NullToEmptyCollection(enabledByDefault = false),
9
NullToEmptyMap(enabledByDefault = false),
10
NullIsSameAsDefault(enabledByDefault = false),
11
SingletonSupport(enabledByDefault = false),
12
StrictNullChecks(enabledByDefault = false);
13
14
- val bitSet: BitSet = 2.0.pow(ordinal).toInt().toBitSet()
+ internal val bitSet: BitSet = 2.0.pow(ordinal).toInt().toBitSet()
15
}
0 commit comments