mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
introduce parameter: clear @Override when delegate (IDEA-153158)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
interface Foo {
|
||||
void foobalize();
|
||||
}
|
||||
|
||||
class ExtractTest implements Foo {
|
||||
@Override
|
||||
public void foobalize() {
|
||||
foobalize(42);
|
||||
}
|
||||
|
||||
public void foobalize(int anObject) {
|
||||
System.out.println(anObject);
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
interface Foo {
|
||||
void foobalize();
|
||||
}
|
||||
|
||||
class ExtractTest implements Foo {
|
||||
@Override
|
||||
public void foobalize() {
|
||||
System.out.println(<selection>42</selection>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user