IDEA-76782 Generate runtime assertions for all configured not-null annotations

This commit is contained in:
peter
2016-09-19 12:04:52 +02:00
parent 35e27f05e9
commit 490d4e67bd
12 changed files with 143 additions and 68 deletions
@@ -0,0 +1,14 @@
@interface FooAnno {}
@interface BarAnno {}
public class MultipleAnnotations {
@FooAnno
public Object foo1() {
return null;
}
@BarAnno
public Object foo2() {
return null;
}
}