mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
safe delete: remove @Override annotation when method is made private
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
interface Am {
|
||||
String getIc<caret>on();
|
||||
}
|
||||
|
||||
class AIIm implements Am {
|
||||
@Override
|
||||
public String getIcon() {
|
||||
return null;
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
new AIIm().getIcon();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user