IDEA-170214 Properly handle Bean Validation inheritance in @NotNull/@Nullable problems inspection

This commit is contained in:
peter
2017-03-28 19:01:55 +02:00
parent d2aa1f7e39
commit e8ac7110c0
3 changed files with 30 additions and 5 deletions
@@ -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;
}
}