Skip to content

Commit 36ebc3a

Browse files
committed
💚 Resolve compilation error for @actions annotation
accessibility fix #59
1 parent e514e96 commit 36ebc3a

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/main/java/io/asfjava/ui/core/form/Action.java

-5
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,3 @@
1313

1414
String onClick() default "";
1515
}
16-
17-
@Retention(RetentionPolicy.RUNTIME)
18-
@interface Actions {
19-
Action[] value();
20-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package io.asfjava.ui.core.form;
2+
3+
import java.lang.annotation.Retention;
4+
import java.lang.annotation.RetentionPolicy;
5+
6+
@Retention(RetentionPolicy.RUNTIME)
7+
public @interface Actions {
8+
Action[] value();
9+
}

0 commit comments

Comments
 (0)