Javadoc fixes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1183477 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2011-10-14 20:03:54 +00:00
parent 00a102e828
commit d454e564c1
1 changed files with 1 additions and 2 deletions

View File

@ -53,7 +53,7 @@ public class ComparatorChain<E> implements Comparator<E>, Serializable, Iterable
* Construct a ComparatorChain with a single Comparator, * Construct a ComparatorChain with a single Comparator,
* sorting in the forward order * sorting in the forward order
* *
* @param comparator First comparator in the Comparator chain * @param comparators Comparators in the Comparator chain
*/ */
public ComparatorChain(Comparator<E>... comparators) { public ComparatorChain(Comparator<E>... comparators) {
this.comparatorChain = new ArrayList<Comparator<E>>(); this.comparatorChain = new ArrayList<Comparator<E>>();
@ -66,7 +66,6 @@ public ComparatorChain(Comparator<E>... comparators) {
* sort order. * sort order.
* *
* @param list List of Comparators * @param list List of Comparators
* @see #ComparatorChain(List,BitSet)
*/ */
public ComparatorChain(List<Comparator<E>> list) { public ComparatorChain(List<Comparator<E>> list) {
this.comparatorChain = new ArrayList<Comparator<E>>(); this.comparatorChain = new ArrayList<Comparator<E>>();