mirror of
https://github.com/github/codeql.git
synced 2025-12-22 19:56:32 +01:00
Kotlin: Remove a redundant ?
This commit is contained in:
@@ -1195,7 +1195,7 @@ open class KotlinUsesExtractor(
|
||||
decl.valueParameters.size == f.valueParameters.size
|
||||
} ?:
|
||||
// Or check property accessors:
|
||||
(f.propertyIfAccessor as? IrProperty?)?.let { kotlinProp ->
|
||||
(f.propertyIfAccessor as? IrProperty)?.let { kotlinProp ->
|
||||
val javaProp = javaClass.declarations.findSubType<IrProperty> { decl ->
|
||||
decl.name == kotlinProp.name
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user