Skip to content

Commit b60ce43

Browse files
author
Gary Gregory
committed
Format to line length 120.
1 parent 9d9dffc commit b60ce43

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

src/main/java/org/apache/commons/io/filefilter/TrueFileFilter.java

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,17 @@
2929
public class TrueFileFilter implements IOFileFilter, Serializable {
3030

3131
private static final long serialVersionUID = 8782512160909720199L;
32+
3233
/**
3334
* Singleton instance of true filter.
35+
*
3436
* @since 1.3
3537
*/
3638
public static final IOFileFilter TRUE = new TrueFileFilter();
39+
3740
/**
38-
* Singleton instance of true filter.
39-
* Please use the identical TrueFileFilter.TRUE constant.
40-
* The new name is more JDK 1.5 friendly as it doesn't clash with other
41-
* values when using static imports.
41+
* Singleton instance of true filter. Please use the identical TrueFileFilter.TRUE constant. The new name is more
42+
* JDK 1.5 friendly as it doesn't clash with other values when using static imports.
4243
*/
4344
public static final IOFileFilter INSTANCE = TRUE;
4445

@@ -51,7 +52,7 @@ protected TrueFileFilter() {
5152
/**
5253
* Returns true.
5354
*
54-
* @param file the file to check (ignored)
55+
* @param file the file to check (ignored)
5556
* @return true
5657
*/
5758
@Override
@@ -62,8 +63,8 @@ public boolean accept(final File file) {
6263
/**
6364
* Returns true.
6465
*
65-
* @param dir the directory to check (ignored)
66-
* @param name the file name (ignored)
66+
* @param dir the directory to check (ignored)
67+
* @param name the file name (ignored)
6768
* @return true
6869
*/
6970
@Override

0 commit comments

Comments
 (0)