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 2021/01/07 03:21:22 UTC

[commons-io] branch master updated: 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 b210602  Javadoc.
b210602 is described below

commit b21060232324f7cf0e4462ce406569ef7bae4600
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 6 22:21:18 2021 -0500

    Javadoc.
---
 src/main/java/org/apache/commons/io/file/PathUtils.java | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/file/PathUtils.java b/src/main/java/org/apache/commons/io/file/PathUtils.java
index 7bfab16..3a2fb69 100644
--- a/src/main/java/org/apache/commons/io/file/PathUtils.java
+++ b/src/main/java/org/apache/commons/io/file/PathUtils.java
@@ -723,8 +723,8 @@ public final class PathUtils {
     /**
      * Returns whether the given file or directory is empty.
      *
-     * @param path the the given file or directory to query.
-     * @return whether the given file or directory is empty.
+     * @param path the file or directory to query.
+     * @return whether the file or directory is empty.
      * @throws IOException if an I/O error occurs
      */
     public static boolean isEmpty(final Path path) throws IOException {
@@ -734,8 +734,8 @@ public final class PathUtils {
     /**
      * Returns whether the directory is empty.
      *
-     * @param directory the the given directory to query.
-     * @return whether the given directory is empty.
+     * @param directory the directory to query.
+     * @return whether the directory is empty.
      * @throws IOException if an I/O error occurs
      */
     public static boolean isEmptyDirectory(final Path directory) throws IOException {
@@ -747,8 +747,8 @@ public final class PathUtils {
     /**
      * Returns whether the given file is empty.
      *
-     * @param file the the given file to query.
-     * @return whether the given file is empty.
+     * @param file the file to query.
+     * @return whether the file is empty.
      * @throws IOException if an I/O error occurs
      */
     public static boolean isEmptyFile(final Path file) throws IOException {