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 b60ce43 Format to line length 120. b60ce43 is described below commit b60ce4398e6aac8955ba0fdd7a1d7a8a572fb42f Author: Gary Gregory <gardgreg...@gmail.com> AuthorDate: Sun Sep 27 14:21:42 2020 -0400 Format to line length 120. --- .../org/apache/commons/io/filefilter/TrueFileFilter.java | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/io/filefilter/TrueFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/TrueFileFilter.java index a798e87..1f2f13c 100644 --- a/src/main/java/org/apache/commons/io/filefilter/TrueFileFilter.java +++ b/src/main/java/org/apache/commons/io/filefilter/TrueFileFilter.java @@ -29,16 +29,17 @@ import java.io.Serializable; public class TrueFileFilter implements IOFileFilter, Serializable { private static final long serialVersionUID = 8782512160909720199L; + /** * Singleton instance of true filter. + * * @since 1.3 */ public static final IOFileFilter TRUE = new TrueFileFilter(); + /** - * Singleton instance of true filter. - * Please use the identical TrueFileFilter.TRUE 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 true filter. Please use the identical TrueFileFilter.TRUE 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 = TRUE; @@ -51,7 +52,7 @@ public class TrueFileFilter implements IOFileFilter, Serializable { /** * Returns true. * - * @param file the file to check (ignored) + * @param file the file to check (ignored) * @return true */ @Override @@ -62,8 +63,8 @@ public class TrueFileFilter implements IOFileFilter, Serializable { /** * Returns true. * - * @param dir the directory to check (ignored) - * @param name the file name (ignored) + * @param dir the directory to check (ignored) + * @param name the file name (ignored) * @return true */ @Override