[SLC] fix modality for methods and property accessors
^KTIJ-23783
This commit is contained in:
committed by
Space Team
parent
00ab33bbf9
commit
7bfa900ce6
+2
-2
@@ -2,10 +2,10 @@ public final class C /* C*/ implements Tr {
|
||||
private final int v;
|
||||
|
||||
@java.lang.Override()
|
||||
public int foo();// foo()
|
||||
public final int foo();// foo()
|
||||
|
||||
public C();// .ctor()
|
||||
|
||||
public int getV();// getV()
|
||||
public final int getV();// getV()
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
public final class C /* C*/ implements Base {
|
||||
@java.lang.Override()
|
||||
public void foo();// foo()
|
||||
public final void foo();// foo()
|
||||
|
||||
public C();// .ctor()
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
public final class C /* C*/ implements Base<kotlin.Unit> {
|
||||
@java.lang.Override()
|
||||
public void foo(@org.jetbrains.annotations.NotNull() kotlin.Unit);// foo(kotlin.Unit)
|
||||
public final void foo(@org.jetbrains.annotations.NotNull() kotlin.Unit);// foo(kotlin.Unit)
|
||||
|
||||
public C();// .ctor()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user