We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3f723 commit 81ff394Copy full SHA for 81ff394
java/kotlin-extractor/src/main/kotlin/KotlinFileExtractor.kt
@@ -5748,7 +5748,7 @@ open class KotlinFileExtractor(
5748
// Match Java by using a special <nulltype> for nulls, rather than Kotlin's view of this which is
5749
// kotlin.Nothing?, the type that can only contain null.
5750
val nullTypeName = "<nulltype>"
5751
- val javaNullType = tw.getLabelFor(
+ val javaNullType = tw.getLabelFor<DbPrimitive>(
5752
"@\"type;$nullTypeName\"",
5753
{ tw.writePrimitives(it, nullTypeName) }
5754
)
0 commit comments