We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3729348 commit d8cc06dCopy full SHA for d8cc06d
inject-aop/src/main/java/io/avaje/inject/aop/Aspect.java
@@ -4,7 +4,7 @@
4
import static java.lang.annotation.RetentionPolicy.*;
5
import java.lang.annotation.*;
6
7
-import io.avaje.inject.aop.Aspect.Import.List;
+import io.avaje.inject.aop.Aspect.Import.Imports;
8
9
/**
10
* Meta annotation used to define an Aspect.
@@ -38,7 +38,7 @@
38
* Marks an External Annotation as being used for aspects
39
*/
40
@Retention(SOURCE)
41
- @Repeatable(List.class)
+ @Repeatable(Imports.class)
42
@Target({PACKAGE, TYPE, MODULE})
43
@interface Import {
44
@@ -56,7 +56,7 @@
56
57
58
@Target({TYPE, PACKAGE, MODULE})
59
- @interface List {
+ @interface Imports {
60
61
Import[] value();
62
}
0 commit comments