Skip to content

Commit 632d4bb

Browse files
committed
Remove unnecessary code introduced during development
1 parent b039c71 commit 632d4bb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

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

-3
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ internal class KotlinAnnotationIntrospector(private val context: Module.SetupCon
6868
// Find a converter to handle the case where the getter returns an unboxed value from the value class.
6969
is AnnotatedMethod -> cache.findValueClassReturnType(a)
7070
?.let { cache.getValueClassBoxConverter(a.rawReturnType, it) }
71-
?: a.takeIf { Sequence::class.java.isAssignableFrom(it.rawType) }
72-
?.let { SequenceToIteratorConverter(it.type) }
73-
7471
is AnnotatedClass -> a
7572
.takeIf { Sequence::class.java.isAssignableFrom(it.rawType) }
7673
?.let { SequenceToIteratorConverter(it.type) }

0 commit comments

Comments
 (0)