Skip to content

Commit d8cc06d

Browse files
authored
fix module import clash (#739)
1 parent 3729348 commit d8cc06d

File tree

1 file changed

+3
-3
lines changed
  • inject-aop/src/main/java/io/avaje/inject/aop

1 file changed

+3
-3
lines changed

inject-aop/src/main/java/io/avaje/inject/aop/Aspect.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import static java.lang.annotation.RetentionPolicy.*;
55
import java.lang.annotation.*;
66

7-
import io.avaje.inject.aop.Aspect.Import.List;
7+
import io.avaje.inject.aop.Aspect.Import.Imports;
88

99
/**
1010
* Meta annotation used to define an Aspect.
@@ -38,7 +38,7 @@
3838
* Marks an External Annotation as being used for aspects
3939
*/
4040
@Retention(SOURCE)
41-
@Repeatable(List.class)
41+
@Repeatable(Imports.class)
4242
@Target({PACKAGE, TYPE, MODULE})
4343
@interface Import {
4444

@@ -56,7 +56,7 @@
5656

5757
@Retention(SOURCE)
5858
@Target({TYPE, PACKAGE, MODULE})
59-
@interface List {
59+
@interface Imports {
6060

6161
Import[] value();
6262
}

0 commit comments

Comments
 (0)