@@ -35,7 +35,7 @@ public class NotFileFilter extends AbstractFileFilter implements Serializable {
3535 /**
3636 * Constructs a new file filter that NOTs the result of another filter.
3737 *
38- * @param filter the filter, must not be null
38+ * @param filter the filter, must not be null
3939 * @throws IllegalArgumentException if the filter is null
4040 */
4141 public NotFileFilter (final IOFileFilter filter ) {
@@ -48,7 +48,7 @@ public NotFileFilter(final IOFileFilter filter) {
4848 /**
4949 * Returns the logical NOT of the underlying filter's return value for the same File.
5050 *
51- * @param file the File to check
51+ * @param file the File to check
5252 * @return true if the filter returns false
5353 */
5454 @ Override
@@ -59,13 +59,13 @@ public boolean accept(final File file) {
5959 /**
6060 * Returns the logical NOT of the underlying filter's return value for the same arguments.
6161 *
62- * @param file the File directory
63- * @param name the file name
62+ * @param file the File directory
63+ * @param name the file name
6464 * @return true if the filter returns false
6565 */
6666 @ Override
6767 public boolean accept (final File file , final String name ) {
68- return ! filter .accept (file , name );
68+ return !filter .accept (file , name );
6969 }
7070
7171 /**
@@ -75,7 +75,7 @@ public boolean accept(final File file, final String name) {
7575 */
7676 @ Override
7777 public String toString () {
78- return super .toString () + "(" + filter .toString () + ")" ;
78+ return super .toString () + "(" + filter .toString () + ")" ;
7979 }
8080
8181}
0 commit comments