File tree Expand file tree Collapse file tree
src/main/java/org/apache/commons/io/filefilter Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929public 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
You can’t perform that action at this time.
0 commit comments