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 e24da2b Javadoc. e24da2b is described below commit e24da2b905c93685a3dbcc5e8758d360b6f6be56 Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Aug 2 21:04:32 2020 -0400 Javadoc. --- .../org/apache/commons/io/comparator/LastModifiedFileComparator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/io/comparator/LastModifiedFileComparator.java b/src/main/java/org/apache/commons/io/comparator/LastModifiedFileComparator.java index cf47a1b..3d40e1b 100644 --- a/src/main/java/org/apache/commons/io/comparator/LastModifiedFileComparator.java +++ b/src/main/java/org/apache/commons/io/comparator/LastModifiedFileComparator.java @@ -28,14 +28,14 @@ import java.util.Comparator; * by their last modified date/time. * <p> * Example of sorting a list of files using the - * {@link #INSTANCE} singleton instance: + * {@link #LASTMODIFIED_COMPARATOR} singleton instance: * <pre> * List<File> list = ... * ((AbstractFileComparator) LastModifiedFileComparator.LASTMODIFIED_COMPARATOR).sort(list); * </pre> * <p> * Example of doing a <i>reverse</i> sort of an array of files using the - * {@link #INSTANCE_REVERSE} singleton instance: + * {@link #LASTMODIFIED_REVERSE} singleton instance: * <pre> * File[] array = ... * ((AbstractFileComparator) LastModifiedFileComparator.LASTMODIFIED_REVERSE).sort(array);