Skip to content

Commit e886e50

Browse files
committed
Kotlin: fix warning
1 parent 40f90ea commit e886e50

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
@@ -6957,7 +6957,7 @@ open class KotlinFileExtractor(
69576957
tw.writeExprs_stringliteral(id, type.javaResult.id, parent, idx)
69586958
tw.writeExprsKotlinType(id, type.kotlinResult.id)
69596959
extractExprContext(id, locId, enclosingCallable, enclosingStmt)
6960-
tw.writeNamestrings(toQuotedLiteral(v.toString()), v.toString(), id)
6960+
tw.writeNamestrings(toQuotedLiteral(v), v, id)
69616961
}
69626962
}
69636963
v == null -> {

0 commit comments

Comments
 (0)