Skip to content

Commit 9a7ff4b

Browse files
committed
Kotlin: Remove a redundant cast
1 parent a7d095e commit 9a7ff4b

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
@@ -3233,7 +3233,7 @@ open class KotlinFileExtractor(
32333233
tw.writeExprsKotlinType(callId, callType.kotlinResult.id)
32343234
this.writeExpressionMetadataToTrapFile(callId, invokeLabels.methodId, retId)
32353235

3236-
tw.writeCallableBinding(callId as Label<out DbCaller>, getId)
3236+
tw.writeCallableBinding(callId, getId)
32373237

32383238
this.writeThisAccess(callId, invokeLabels.methodId, retId)
32393239
for ((pIdx, p) in invokeLabels.parameters.withIndex()) {

0 commit comments

Comments
 (0)