diff --git a/src/main/java/org/apache/commons/collections4/set/CompositeSet.java b/src/main/java/org/apache/commons/collections4/set/CompositeSet.java index 72b823174..0070f1bc3 100644 --- a/src/main/java/org/apache/commons/collections4/set/CompositeSet.java +++ b/src/main/java/org/apache/commons/collections4/set/CompositeSet.java @@ -62,14 +62,14 @@ public class CompositeSet implements Set, Serializable { private final List> all = new ArrayList<>(); /** - * Create an empty CompositeSet. + * Creates an empty CompositeSet. */ public CompositeSet() { super(); } /** - * Create a CompositeSet with just {@code set} composited. + * Creates a CompositeSet with just {@code set} composited. * * @param set the initial set in the composite */ @@ -79,7 +79,7 @@ public class CompositeSet implements Set, Serializable { } /** - * Create a composite set with sets as the initial set of composited Sets. + * Creates a composite set with sets as the initial set of composited Sets. * * @param sets the initial sets in the composite */ @@ -367,7 +367,7 @@ public class CompositeSet implements Set, Serializable { } /** - * Add a Set to this composite. + * Adds a Set to this composite. * * @param set the set to add * @throws IllegalArgumentException if a SetMutator is set, but fails to resolve a collision @@ -396,7 +396,7 @@ public class CompositeSet implements Set, Serializable { } /** - * Add these Sets to the list of sets in this composite. + * Adds these Sets to the list of sets in this composite. * * @param set1 the first Set to be appended to the composite * @param set2 the second Set to be appended to the composite @@ -407,7 +407,7 @@ public class CompositeSet implements Set, Serializable { } /** - * Add these Sets to the list of sets in this composite + * Adds these Sets to the list of sets in this composite * * @param sets the Sets to be appended to the composite */ @@ -449,7 +449,7 @@ public class CompositeSet implements Set, Serializable { } /** - * Get the set mutator to be used for this CompositeSet. + * Gets the set mutator to be used for this CompositeSet. * @return the set mutator */ protected SetMutator getMutator() { @@ -483,7 +483,7 @@ public class CompositeSet implements Set, Serializable { } /** - * Define callbacks for mutation operations. + * Defines callbacks for mutation operations. */ public interface SetMutator extends Serializable {