@@ -226,13 +226,13 @@ public static IOFileFilter fileFileFilter() {
226226 * Set<File> javaFiles = FileFilterUtils.filterSet(allFiles,
227227 * FileFilterUtils.suffixFileFilter(".java"));
228228 * </pre>
229+ *
229230 * @param filter the filter to apply to the set of files.
230231 * @param files the array of files to apply the filter to.
231232 * @return a subset of {@code files} that is accepted by the
232233 * file filter.
233234 * @throws NullPointerException if the filter is {@code null}
234235 * or {@code files} contains a {@code null} value.
235- *
236236 * @since 2.0
237237 */
238238 public static File [] filter (final IOFileFilter filter , final File ... files ) {
@@ -259,13 +259,13 @@ public static File[] filter(final IOFileFilter filter, final File... files) {
259259 * Set<File> javaFiles = FileFilterUtils.filterSet(allFiles,
260260 * FileFilterUtils.suffixFileFilter(".java"));
261261 * </pre>
262+ *
262263 * @param filter the filter to apply to the set of files.
263264 * @param files the array of files to apply the filter to.
264265 * @return a subset of {@code files} that is accepted by the
265266 * file filter.
266267 * @throws IllegalArgumentException if the filter is {@code null}
267268 * or {@code files} contains a {@code null} value.
268- *
269269 * @since 2.0
270270 */
271271 public static File [] filter (final IOFileFilter filter , final Iterable <File > files ) {
@@ -311,6 +311,7 @@ private static <R, A> R filterFiles(final IOFileFilter filter, final Stream<File
311311 * List<File> directories = FileFilterUtils.filterList(filesAndDirectories,
312312 * FileFilterUtils.directoryFileFilter());
313313 * </pre>
314+ *
314315 * @param filter the filter to apply to each files in the list.
315316 * @param files the collection of files to apply the filter to.
316317 * @return a subset of {@code files} that is accepted by the
@@ -339,6 +340,7 @@ public static List<File> filterList(final IOFileFilter filter, final File... fil
339340 * List<File> directories = FileFilterUtils.filterList(filesAndDirectories,
340341 * FileFilterUtils.directoryFileFilter());
341342 * </pre>
343+ *
342344 * @param filter the filter to apply to each files in the list.
343345 * @param files the collection of files to apply the filter to.
344346 * @return a subset of {@code files} that is accepted by the
@@ -369,6 +371,7 @@ public static List<File> filterList(final IOFileFilter filter, final Iterable<Fi
369371 * Set<File> javaFiles = FileFilterUtils.filterSet(allFiles,
370372 * FileFilterUtils.suffixFileFilter(".java"));
371373 * </pre>
374+ *
372375 * @param filter the filter to apply to the set of files.
373376 * @param files the collection of files to apply the filter to.
374377 * @return a subset of {@code files} that is accepted by the
@@ -398,6 +401,7 @@ public static Set<File> filterSet(final IOFileFilter filter, final File... files
398401 * Set<File> javaFiles = FileFilterUtils.filterSet(allFiles,
399402 * FileFilterUtils.suffixFileFilter(".java"));
400403 * </pre>
404+ *
401405 * @param filter the filter to apply to the set of files.
402406 * @param files the collection of files to apply the filter to.
403407 * @return a subset of {@code files} that is accepted by the
0 commit comments