mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-76782 Generate runtime assertions for all configured not-null annotations
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
@interface FooAnno {}
|
||||
@interface BarAnno {}
|
||||
|
||||
public class MultipleAnnotations {
|
||||
@FooAnno
|
||||
public Object foo1() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@BarAnno
|
||||
public Object foo2() {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user