d603142cc6
For this inspection three kinds of fixes are potentially available: - Add 'const' modifier to kotlin property - Add '@JvmField' annotation to kotlin property - Change field reference to getter invocation In case user chooses to 'cleanup code', these fixes are prioritized in this order
10 lines
192 B
Java
Vendored
10 lines
192 B
Java
Vendored
// "Add 'const' modifier to a property" "true"
|
|
import a.A;
|
|
|
|
class B {
|
|
void bar() {
|
|
A a = A.prop<caret>erty;
|
|
A a2 = A.Named.getProperty();
|
|
A a3 = A.property;
|
|
}
|
|
} |