Skip to content

Commit 81ff394

Browse files
committed
Be explicit about Kotlin database type
1 parent 5d3f723 commit 81ff394

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/kotlin-extractor/src/main/kotlin/KotlinFileExtractor.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5748,7 +5748,7 @@ open class KotlinFileExtractor(
57485748
// Match Java by using a special <nulltype> for nulls, rather than Kotlin's view of this which is
57495749
// kotlin.Nothing?, the type that can only contain null.
57505750
val nullTypeName = "<nulltype>"
5751-
val javaNullType = tw.getLabelFor(
5751+
val javaNullType = tw.getLabelFor<DbPrimitive>(
57525752
"@\"type;$nullTypeName\"",
57535753
{ tw.writePrimitives(it, nullTypeName) }
57545754
)

0 commit comments

Comments
 (0)