File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/kotlin/com/fasterxml/jackson/module/kotlin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,8 +115,8 @@ internal fun Int.toBitSet(): BitSet {
115
115
return bits
116
116
}
117
117
118
- // In the future, value class without JvmInline will be available, and unbox may not be able to handle it.
118
+ // In the future, value classes without @ JvmInline will be available, and unboxing may not be able to handle it.
119
119
// https://github.com/FasterXML/jackson-module-kotlin/issues/464
120
- // The JvmInline annotation can be given to Java class ,
120
+ // The JvmInline annotation can be added to Java classes ,
121
121
// so the isKotlinClass decision is necessary (the order is preferable in terms of possible frequency).
122
122
internal fun Class <* >.isUnboxableValueClass () = annotations.any { it is JvmInline } && this .isKotlinClass()
You can’t perform that action at this time.
0 commit comments