Skip to content

Commit e5169e8

Browse files
committed
Copyedit comment
1 parent 1e08067 commit e5169e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/kotlin/com/fasterxml/jackson/module/kotlin/Extensions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ internal fun Int.toBitSet(): BitSet {
115115
return bits
116116
}
117117

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.
119119
// 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,
121121
// so the isKotlinClass decision is necessary (the order is preferable in terms of possible frequency).
122122
internal fun Class<*>.isUnboxableValueClass() = annotations.any { it is JvmInline } && this.isKotlinClass()

0 commit comments

Comments
 (0)