Skip to content

Commit

Permalink
Remove unnecessary code introduced during development
Browse files Browse the repository at this point in the history
  • Loading branch information
k163377 committed May 6, 2023
1 parent b039c71 commit 632d4bb
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ internal class KotlinAnnotationIntrospector(private val context: Module.SetupCon
// Find a converter to handle the case where the getter returns an unboxed value from the value class.
is AnnotatedMethod -> cache.findValueClassReturnType(a)
?.let { cache.getValueClassBoxConverter(a.rawReturnType, it) }
?: a.takeIf { Sequence::class.java.isAssignableFrom(it.rawType) }
?.let { SequenceToIteratorConverter(it.type) }

is AnnotatedClass -> a
.takeIf { Sequence::class.java.isAssignableFrom(it.rawType) }
?.let { SequenceToIteratorConverter(it.type) }
Expand Down

0 comments on commit 632d4bb

Please sign in to comment.