KT-56845 [SLC] Add @Override to overridden property accessors

This commit is contained in:
Pavel Mikhailovskii
2023-03-10 10:32:48 +00:00
committed by Space Team
parent 82524fde26
commit d9f023db89
11 changed files with 52 additions and 33 deletions
@@ -9,12 +9,13 @@ public enum Foo /* Foo*/ {
public final class InlineInheritance /* InlineInheritance*/ implements I {
private final int v;
@java.lang.Override()
public int getX();// getX()
@java.lang.Override()
public int y();// y()
public final int getV();// getV()
public int getX();// getX()
}
public final class InlinedDelegate /* InlinedDelegate*/<T> {