Skip to content

Commit 4f63317

Browse files
committed
Kotlin: Remove a redundant ?
1 parent 6d00860 commit 4f63317

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ open class KotlinUsesExtractor(
11951195
decl.valueParameters.size == f.valueParameters.size
11961196
} ?:
11971197
// Or check property accessors:
1198-
(f.propertyIfAccessor as? IrProperty?)?.let { kotlinProp ->
1198+
(f.propertyIfAccessor as? IrProperty)?.let { kotlinProp ->
11991199
val javaProp = javaClass.declarations.findSubType<IrProperty> { decl ->
12001200
decl.name == kotlinProp.name
12011201
}

0 commit comments

Comments
 (0)