mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +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) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user