You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/12/11 23:20:56 UTC

[commons-io] branch master updated: Slightly better Javadoc.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new b47686a  Slightly better Javadoc.
b47686a is described below

commit b47686ac12a7e766b9134e4af575004c003aa91a
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Dec 11 18:20:27 2020 -0500

    Slightly better Javadoc.
---
 .../java/org/apache/commons/io/filefilter/AbstractFileFilter.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/filefilter/AbstractFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/AbstractFileFilter.java
index 6f91904..4c1b538 100644
--- a/src/main/java/org/apache/commons/io/filefilter/AbstractFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/AbstractFileFilter.java
@@ -32,7 +32,7 @@ import org.apache.commons.io.file.PathVisitor;
  * Abstracts the implementation of the {@link FileFilter} (IO), {@link FilenameFilter} (IO), {@link PathFilter} (NIO)
  * interfaces via our own {@link IOFileFilter} interface.
  * <p>
- * Note that a subclass MUST override one of the {@code accept} methods, otherwise your class will infinitely loop.
+ * Note that a subclass MUST override one of the {@code accept} methods, otherwise that subclass will infinitely loop.
  * </p>
  *
  * @since 1.0
@@ -71,7 +71,7 @@ public abstract class AbstractFileFilter implements IOFileFilter, PathVisitor {
     /**
      * Handles exceptions caught while accepting.
      *
-     * @param t the caught exception.
+     * @param t the caught Throwable.
      * @return the given Throwable.
      * @since 2.9.0
      */