summaryrefslogtreecommitdiffstats
path: root/yolean/src/main/java/com/yahoo/yolean/chain/Before.java
diff options
context:
space:
mode:
Diffstat (limited to 'yolean/src/main/java/com/yahoo/yolean/chain/Before.java')
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/Before.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/Before.java b/yolean/src/main/java/com/yahoo/yolean/chain/Before.java
index 00e6d6a20b9..108fbff2e21 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/Before.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/Before.java
@@ -8,16 +8,16 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
- * <p>The component that is annotated with this must be placed earlier than the components or phases providing names
- * contained in the given list.</p>
+ * The component that is annotated with this must be placed earlier than the components or phases providing names
+ * contained in the given list.
*
* @author tonytv
- * @since 5.1.18
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface Before {
- public abstract String[] value() default { };
+ String[] value() default { };
+
}