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/09/27 16:21:40 UTC

[commons-io] branch master updated: Format to line length 120.

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 57e6135  Format to line length 120.
57e6135 is described below

commit 57e6135b397ea13ef6628d1906d72c7f5c1b3fb5
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 27 12:21:34 2020 -0400

    Format to line length 120.
---
 .../commons/io/filefilter/DirectoryFileFilter.java    | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/filefilter/DirectoryFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/DirectoryFileFilter.java
index 2298ce1..2bf020b 100644
--- a/src/main/java/org/apache/commons/io/filefilter/DirectoryFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/DirectoryFileFilter.java
@@ -22,13 +22,12 @@ import java.io.Serializable;
 /**
  * This filter accepts <code>File</code>s that are directories.
  * <p>
- * For example, here is how to print out a list of the
- * current directory's subdirectories:
+ * For example, here is how to print out a list of the current directory's subdirectories:
  *
  * <pre>
  * File dir = new File(".");
- * String[] files = dir.list( DirectoryFileFilter.INSTANCE );
- * for ( int i = 0; i &lt; files.length; i++ ) {
+ * String[] files = dir.list(DirectoryFileFilter.INSTANCE);
+ * for (int i = 0; i &lt; files.length; i++) {
  *     System.out.println(files[i]);
  * }
  * </pre>
@@ -42,28 +41,30 @@ public class DirectoryFileFilter extends AbstractFileFilter implements Serializa
 
     /**
      * Singleton instance of directory filter.
+     * 
      * @since 1.3
      */
     public static final IOFileFilter DIRECTORY = new DirectoryFileFilter();
+
     /**
-     * Singleton instance of directory filter.
-     * Please use the identical DirectoryFileFilter.DIRECTORY constant.
-     * The new name is more JDK 1.5 friendly as it doesn't clash with other
-     * values when using static imports.
+     * Singleton instance of directory filter. Please use the identical DirectoryFileFilter.DIRECTORY constant. The new
+     * name is more JDK 1.5 friendly as it doesn't clash with other values when using static imports.
      */
     public static final IOFileFilter INSTANCE = DIRECTORY;
+
     private static final long serialVersionUID = -5148237843784525732L;
 
     /**
      * Restrictive constructor.
      */
     protected DirectoryFileFilter() {
+        // empty.
     }
 
     /**
      * Checks to see if the file is a directory.
      *
-     * @param file  the File to check
+     * @param file the File to check
      * @return true if the file is a directory
      */
     @Override