Merge pull request #9581 from igfoo/igfoo/redundant_cast

Kotlin: Remove a redundant cast
This commit is contained in:
Ian Lynagh
2022-06-20 17:28:49 +01:00
committed by GitHub

View File

@@ -3233,7 +3233,7 @@ open class KotlinFileExtractor(
tw.writeExprsKotlinType(callId, callType.kotlinResult.id)
this.writeExpressionMetadataToTrapFile(callId, invokeLabels.methodId, retId)
tw.writeCallableBinding(callId as Label<out DbCaller>, getId)
tw.writeCallableBinding(callId, getId)
this.writeThisAccess(callId, invokeLabels.methodId, retId)
for ((pIdx, p) in invokeLabels.parameters.withIndex()) {