miha-x64
05/18/2017, 8:40 AM// Java
public class Something {
public String getValue() {...}
}
// Kotlin
class SomethingCool {
@Deprecated(..., ReplaceWith(...))
override fun getValue(): String = ...
}
Getting this issue:
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?