mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
IDEA-170214 Properly handle Bean Validation inheritance in @NotNull/@Nullable problems inspection
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import javax.annotation.constraints.*;
|
||||
|
||||
interface Intf {
|
||||
@NotNull Object foo(@NotNull Object p);
|
||||
}
|
||||
|
||||
class Impl implements Intf {
|
||||
@Override
|
||||
public Object foo(Object p) {
|
||||
return p;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user