aboutsummaryrefslogtreecommitdiffstats
path: root/yolean
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@yahoo-inc.com>2017-10-27 14:18:58 +0200
committerJon Bratseth <bratseth@yahoo-inc.com>2017-10-27 14:18:58 +0200
commit704131deda2614516bff5329802c61fe4526a834 (patch)
treeb7b2af4b0e4bc569895a7ec87053ebab5697a3d1 /yolean
parent5fcbb66f52d44b286f0898ab318f7e6269330f4e (diff)
Nonfunctional changes only
Diffstat (limited to 'yolean')
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/After.java8
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/Before.java8
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/Chain.java1
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/ChainCycleException.java1
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/Dependencies.java1
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/DirectedGraph.java1
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/EnumeratedIdentitySet.java1
-rw-r--r--yolean/src/main/java/com/yahoo/yolean/chain/Provides.java4
8 files changed, 15 insertions, 10 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 { };
+
}
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 { };
+
}
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/Chain.java b/yolean/src/main/java/com/yahoo/yolean/chain/Chain.java
index b761d2f1834..537d242374d 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/Chain.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/Chain.java
@@ -95,4 +95,5 @@ public final class Chain<T> implements Iterable<T> {
}
return true;
}
+
}
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/ChainCycleException.java b/yolean/src/main/java/com/yahoo/yolean/chain/ChainCycleException.java
index b4e0a6815b4..50eff4aabc4 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/ChainCycleException.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/ChainCycleException.java
@@ -21,4 +21,5 @@ public class ChainCycleException extends RuntimeException {
public List<?> components() {
return components;
}
+
}
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/Dependencies.java b/yolean/src/main/java/com/yahoo/yolean/chain/Dependencies.java
index 0932a847889..fca0bac753d 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/Dependencies.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/Dependencies.java
@@ -182,4 +182,5 @@ public class Dependencies<T> {
return new Order<>((U[])null, null, null);
}
}
+
}
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/DirectedGraph.java b/yolean/src/main/java/com/yahoo/yolean/chain/DirectedGraph.java
index 4a06badcbb0..cd1680b5722 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/DirectedGraph.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/DirectedGraph.java
@@ -103,4 +103,5 @@ class DirectedGraph {
Collections.<T>emptyList() :
list;
}
+
}
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/EnumeratedIdentitySet.java b/yolean/src/main/java/com/yahoo/yolean/chain/EnumeratedIdentitySet.java
index ea94b22e3ec..6cd316fb5f5 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/EnumeratedIdentitySet.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/EnumeratedIdentitySet.java
@@ -180,4 +180,5 @@ class EnumeratedIdentitySet<T> implements Set<T> {
return result;
}
+
}
diff --git a/yolean/src/main/java/com/yahoo/yolean/chain/Provides.java b/yolean/src/main/java/com/yahoo/yolean/chain/Provides.java
index 277fe20c224..5b02d3bf4d3 100644
--- a/yolean/src/main/java/com/yahoo/yolean/chain/Provides.java
+++ b/yolean/src/main/java/com/yahoo/yolean/chain/Provides.java
@@ -12,12 +12,12 @@ import java.lang.annotation.Target;
* and "after" the string provided here, to impose constraints on ordering.</p>
*
* @author tonytv
- * @since 5.1.18
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface Provides {
- public abstract String[] value() default { };
+ String[] value() default { };
+
}