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/09/27 14:27:27 UTC

[commons-io] branch master updated: Javadoc: Close HTML tags.

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 3a9f8ec  Javadoc: Close HTML tags.
3a9f8ec is described below

commit 3a9f8ecfb56997f222c538c9e9802f0c369d0700
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 27 10:27:22 2020 -0400

    Javadoc: Close HTML tags.
---
 src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java
index e3b5d0a..068d041 100644
--- a/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/IOFileFilter.java
@@ -25,7 +25,6 @@ import java.io.FilenameFilter;
  * interfaces together.
  *
  * @since 1.0
- *
  */
 public interface IOFileFilter extends FileFilter, FilenameFilter {
 
@@ -38,7 +37,7 @@ public interface IOFileFilter extends FileFilter, FilenameFilter {
      * Checks to see if the File should be accepted by this filter.
      * <p>
      * Defined in {@link java.io.FileFilter}.
-     *
+     * </p>
      * @param file  the File to check
      * @return true if this file matches the test
      */
@@ -49,7 +48,7 @@ public interface IOFileFilter extends FileFilter, FilenameFilter {
      * Checks to see if the File should be accepted by this filter.
      * <p>
      * Defined in {@link java.io.FilenameFilter}.
-     *
+     * </p>
      * @param dir  the directory File to check
      * @param name  the file name within the directory to check
      * @return true if this file matches the test