We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b039c71 commit 632d4bbCopy full SHA for 632d4bb
src/main/kotlin/com/fasterxml/jackson/module/kotlin/KotlinAnnotationIntrospector.kt
@@ -68,9 +68,6 @@ internal class KotlinAnnotationIntrospector(private val context: Module.SetupCon
68
// Find a converter to handle the case where the getter returns an unboxed value from the value class.
69
is AnnotatedMethod -> cache.findValueClassReturnType(a)
70
?.let { cache.getValueClassBoxConverter(a.rawReturnType, it) }
71
- ?: a.takeIf { Sequence::class.java.isAssignableFrom(it.rawType) }
72
- ?.let { SequenceToIteratorConverter(it.type) }
73
-
74
is AnnotatedClass -> a
75
.takeIf { Sequence::class.java.isAssignableFrom(it.rawType) }
76
?.let { SequenceToIteratorConverter(it.type) }
0 commit comments