@@ -157,6 +157,7 @@ private RelativeSortedPaths(final Path dir1, final Path dir2, final int maxDepth
157157
158158 /**
159159 * Empty {@link Path} array.
160+ *
160161 * @since 2.9.0
161162 */
162163 public static final Path [] EMPTY_PATH_ARRAY = new Path [0 ];
@@ -555,9 +556,8 @@ public static boolean fileContentEquals(final Path path1, final Path path2, fina
555556
556557 /**
557558 * <p>
558- * Applies an {@link IOFileFilter} to the provided {@link File}
559- * objects. The resulting array is a subset of the original file list that
560- * matches the provided filter.
559+ * Applies an {@link IOFileFilter} to the provided {@link File} objects. The resulting array is a subset of the
560+ * original file list that matches the provided filter.
561561 * </p>
562562 *
563563 * <p>
@@ -569,13 +569,13 @@ public static boolean fileContentEquals(final Path path1, final Path path2, fina
569569 * Set<File> javaFiles = FileFilterUtils.filterSet(allFiles,
570570 * FileFilterUtils.suffixFileFilter(".java"));
571571 * </pre>
572+ *
572573 * @param filter the filter to apply to the set of files.
573574 * @param paths the array of files to apply the filter to.
574575 *
575- * @return a subset of <code>files</code> that is accepted by the
576- * file filter.
577- * @throws IllegalArgumentException if the filter is {@code null}
578- * or <code>files</code> contains a {@code null} value.
576+ * @return a subset of <code>files</code> that is accepted by the file filter.
577+ * @throws IllegalArgumentException if the filter is {@code null} or <code>files</code> contains a {@code null}
578+ * value.
579579 *
580580 * @since 2.9.0
581581 */
@@ -668,7 +668,8 @@ public static boolean isEmptyFile(final Path file) throws IOException {
668668 * @throws NullPointerException if the file is {@code null}
669669 * @since 2.9.0
670670 */
671- public static boolean isNewer (final Path file , final long timeMillis , final LinkOption ... options ) throws IOException {
671+ public static boolean isNewer (final Path file , final long timeMillis , final LinkOption ... options )
672+ throws IOException {
672673 Objects .requireNonNull (file , "file" );
673674 if (!Files .exists (file )) {
674675 return false ;
0 commit comments