This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
The following commit(s) were added to refs/heads/master by this push: new 60319bd Javadoc. 60319bd is described below commit 60319bd7332a3ca2e40d621e31db0dd0417be311 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Feb 13 11:31:33 2022 -0500 Javadoc. --- .../java/org/apache/commons/io/comparator/AbstractFileComparator.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/comparator/AbstractFileComparator.java b/src/main/java/org/apache/commons/io/comparator/AbstractFileComparator.java index 52cb526..64148a5 100644 --- a/src/main/java/org/apache/commons/io/comparator/AbstractFileComparator.java +++ b/src/main/java/org/apache/commons/io/comparator/AbstractFileComparator.java @@ -18,7 +18,6 @@ package org.apache.commons.io.comparator; import java.io.File; import java.util.Arrays; -import java.util.Collections; import java.util.Comparator; import java.util.List; @@ -49,7 +48,7 @@ abstract class AbstractFileComparator implements Comparator<File> { /** * Sorts a List of files. * <p> - * This method uses {@link Collections#sort(List, Comparator)} and returns the original list. + * This method uses {@link List#sort(Comparator)} and returns the original list. * </p> * * @param files The files to sort, may be null.