Safe Delete: Do not replace SafeDeleteOverrideAnnotation for Java methods
#KT-23613 Fixed
This commit is contained in:
Vendored
+2
-2
@@ -4,11 +4,11 @@ class B extends A {
|
||||
System.out.println(getFoo());
|
||||
}
|
||||
|
||||
public String getFoo() {
|
||||
private String getFoo() {
|
||||
return "foo";
|
||||
}
|
||||
|
||||
public void setFoo(String value) {
|
||||
private void setFoo(String value) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user