[SLC] fix modality for methods and property accessors
^KTIJ-23783
This commit is contained in:
committed by
Space Team
parent
00ab33bbf9
commit
7bfa900ce6
@@ -38,14 +38,14 @@ public final class Derived /* Derived*/ extends Base implements IntfWithProp {
|
||||
private final int x = 3 /* initializer type: int */;
|
||||
|
||||
@java.lang.Override()
|
||||
public error.NonExistentClass v();// v()
|
||||
public final error.NonExistentClass v();// v()
|
||||
|
||||
@java.lang.Override()
|
||||
public int abs();// abs()
|
||||
public final int abs();// abs()
|
||||
|
||||
public Derived(int);// .ctor(int)
|
||||
|
||||
public int getX();// getX()
|
||||
public final int getX();// getX()
|
||||
|
||||
}
|
||||
|
||||
@@ -76,6 +76,6 @@ public abstract class AnotherDerived /* AnotherDerived*/ extends Base {
|
||||
final class Private /* Private*/ {
|
||||
public Private();// .ctor()
|
||||
|
||||
public boolean getOverridesNothing();// getOverridesNothing()
|
||||
public final boolean getOverridesNothing();// getOverridesNothing()
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user