File tree Expand file tree Collapse file tree
microsphere-annotation-processor/src/test/java/io/microsphere/annotation/processor Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2222
2323import java .lang .annotation .Annotation ;
2424import java .lang .annotation .Documented ;
25- import java .lang .annotation .ElementType ;
2625import java .lang .annotation .Retention ;
27- import java .lang .annotation .RetentionPolicy ;
2826import java .lang .annotation .Target ;
2927import java .util .concurrent .TimeUnit ;
3028
29+ import static java .lang .annotation .ElementType .TYPE ;
30+ import static java .lang .annotation .RetentionPolicy .RUNTIME ;
3131import static java .util .concurrent .TimeUnit .DAYS ;
3232
3333/**
3737 * @see Annotation
3838 * @since 1.0.0
3939 */
40- @ Retention (RetentionPolicy . RUNTIME )
41- @ Target (ElementType . TYPE )
40+ @ Retention (RUNTIME )
41+ @ Target (TYPE )
4242@ Documented
4343public @interface TestAnnotation {
4444
You can’t perform that action at this time.
0 commit comments