get and set method calls that can be replaced with the Kotlin synthetic properties.
Use property access syntax quick-fix can be used to amen the code automatically.
Example:
// Java:
public class JavaClassWithGetter {
private final String expr = "result";
// ...
public String getExpr() {
return expr;
}
}
// Kotlin:
fun test(j: JavaClassWithGetter) {
// ...
j.getExpr() // <== A quick-fix simplifies the expression to 'j.expr'
}