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 6d00860 commit 4f63317Copy full SHA for 4f63317
java/kotlin-extractor/src/main/kotlin/KotlinUsesExtractor.kt
@@ -1195,7 +1195,7 @@ open class KotlinUsesExtractor(
1195
decl.valueParameters.size == f.valueParameters.size
1196
} ?:
1197
// Or check property accessors:
1198
- (f.propertyIfAccessor as? IrProperty?)?.let { kotlinProp ->
+ (f.propertyIfAccessor as? IrProperty)?.let { kotlinProp ->
1199
val javaProp = javaClass.declarations.findSubType<IrProperty> { decl ->
1200
decl.name == kotlinProp.name
1201
}
0 commit comments