I’ve got a Kotlin class which extends a Java class...
# intellij
m
I’ve got a Kotlin class which extends a Java class, e. g.
Copy code
// Java
public class Something {
    public String getValue() {...}
}

// Kotlin
class SomethingCool {
    @Deprecated(..., ReplaceWith(...))
    override fun getValue(): String = ...
}
Getting this issue:
Copy code
SomethingCool().getValue() // got quickfix from ReplaceWith
SomethingCool().value // no quickfix
Is it known issue or should I file a new one? Or I’m doing something wrong?