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/14 20:44:56 UTC

[commons-net] branch master updated: Javadoc and formatting tweaks.

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-net.git


The following commit(s) were added to refs/heads/master by this push:
     new 6187d01  Javadoc and formatting tweaks.
6187d01 is described below

commit 6187d016521f8b1783a92d25e44e0cd837fdc26d
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Dec 14 15:44:51 2020 -0500

    Javadoc and formatting tweaks.
---
 src/main/java/org/apache/commons/net/ftp/FTPFileFilter.java | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/net/ftp/FTPFileFilter.java b/src/main/java/org/apache/commons/net/ftp/FTPFileFilter.java
index 86bb994..252c11b 100644
--- a/src/main/java/org/apache/commons/net/ftp/FTPFileFilter.java
+++ b/src/main/java/org/apache/commons/net/ftp/FTPFileFilter.java
@@ -19,15 +19,17 @@
 package org.apache.commons.net.ftp;
 
 /**
- * Perform filtering on FTPFile entries.
+ * Performs filtering on {@link FTPFile} instances.
+ *
  * @since 2.2
  */
 public interface FTPFileFilter {
+
     /**
      * Checks if an FTPFile entry should be included or not.
      *
-     * @param file entry to be checked for inclusion. May be <code>null</code>.
-     * @return <code>true</code> if the file is to be included, <code>false</code> otherwise
+     * @param file entry to be checked for inclusion. May be {@code null}.
+     * @return {@code true} if the file is to be included, {@code false} otherwise.
      */
     boolean accept(FTPFile file);
 }