IDEA-142391 Don't report overriding externally-annotated @NotNull methods/parameters when there's no @NotNull annotation in the project

This commit is contained in:
peter
2015-07-10 20:38:53 +02:00
parent 1155a92a9e
commit bcc1f55c12
5 changed files with 51 additions and 31 deletions
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<problems>
</problems>
@@ -0,0 +1,7 @@
class B extends Comparable<B> {
@Override
public int compareTo(B o) {
return 0;
}
}