mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
IDEA-131145 Completion for @Override
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
interface Foo<T> {
|
||||
void run(T t, int myInt);
|
||||
}
|
||||
|
||||
public class A implements Foo<String> {
|
||||
@Overr<caret>
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
interface Foo<T> {
|
||||
void run(T t, int myInt);
|
||||
}
|
||||
|
||||
public class A implements Foo<String> {
|
||||
@Override
|
||||
public void run(String s, int myInt) {
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user