aboutsummaryrefslogtreecommitdiffstats
path: root/yolean/src/main/java/com/yahoo/yolean/chain/After.java
diff options
context:
space:
mode:
Diffstat (limited to 'yolean/src/main/java/com/yahoo/yolean/chain/After.java')
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/After.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/After.java b/yolean/src/main/java/com/yahoo/yolean/chain/After.java
index 582613765cf..cb2caccc6df 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/After.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/After.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 later than the components or phases providing names
- * contained in the given list.</p>
+ * The component that is annotated with this must be placed later 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 After {
- public abstract String[] value() default { };
+ String[] value() default { };
+
}