You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/08/02 22:59:42 UTC

[commons-io] branch master updated: Javadoc cleanups.

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 8c0a834  Javadoc cleanups.
8c0a834 is described below

commit 8c0a834a22872076761705c03d89ea2922040e4f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Aug 2 18:59:35 2020 -0400

    Javadoc cleanups.
---
 .../org/apache/commons/io/comparator/AbstractFileComparator.java  | 8 ++++----
 1 file changed, 4 insertions(+), 4 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 a549766..4cedf8d 100644
--- a/src/main/java/org/apache/commons/io/comparator/AbstractFileComparator.java
+++ b/src/main/java/org/apache/commons/io/comparator/AbstractFileComparator.java
@@ -32,8 +32,8 @@ abstract class AbstractFileComparator implements Comparator<File> {
     /**
      * Sort an array of files.
      * <p>
-     * This method uses {@link Arrays#sort(Object[], Comparator)}
-     * and returns the original array.
+     * This method uses {@link Arrays#sort(Object[], Comparator)} and returns the original array.
+     * </p>
      *
      * @param files The files to sort, may be null
      * @return The sorted array
@@ -49,8 +49,8 @@ abstract class AbstractFileComparator implements Comparator<File> {
     /**
      * Sort a List of files.
      * <p>
-     * This method uses {@link Collections#sort(List, Comparator)}
-     * and returns the original list.
+     * This method uses {@link Collections#sort(List, Comparator)} and returns the original list.
+     * </p>
      *
      * @param files The files to sort, may be null
      * @return The sorted list