mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 08:45:34 +07:00
do not include unknown annotations in override (IDEA-109422)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
interface A {
|
||||
void f(@Unknown1 @Unknown2 String s, @Unknown3 s3);
|
||||
}
|
||||
class B implements A {
|
||||
@Override
|
||||
public void f(String s) {
|
||||
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
interface A {
|
||||
void f(@Unknown1 @Unknown2 String s, @Unknown3 s3);
|
||||
}
|
||||
class B implements A {
|
||||
<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user