Skip to content

Commit b210602

Browse files
author
Gary Gregory
committed
Javadoc.
1 parent c644915 commit b210602

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/org/apache/commons/io/file/PathUtils.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -723,8 +723,8 @@ public static List<AclEntry> getAclEntryList(final Path sourcePath) throws IOExc
723723
/**
724724
* Returns whether the given file or directory is empty.
725725
*
726-
* @param path the the given file or directory to query.
727-
* @return whether the given file or directory is empty.
726+
* @param path the file or directory to query.
727+
* @return whether the file or directory is empty.
728728
* @throws IOException if an I/O error occurs
729729
*/
730730
public static boolean isEmpty(final Path path) throws IOException {
@@ -734,8 +734,8 @@ public static boolean isEmpty(final Path path) throws IOException {
734734
/**
735735
* Returns whether the directory is empty.
736736
*
737-
* @param directory the the given directory to query.
738-
* @return whether the given directory is empty.
737+
* @param directory the directory to query.
738+
* @return whether the directory is empty.
739739
* @throws IOException if an I/O error occurs
740740
*/
741741
public static boolean isEmptyDirectory(final Path directory) throws IOException {
@@ -747,8 +747,8 @@ public static boolean isEmptyDirectory(final Path directory) throws IOException
747747
/**
748748
* Returns whether the given file is empty.
749749
*
750-
* @param file the the given file to query.
751-
* @return whether the given file is empty.
750+
* @param file the file to query.
751+
* @return whether the file is empty.
752752
* @throws IOException if an I/O error occurs
753753
*/
754754
public static boolean isEmptyFile(final Path file) throws IOException {

0 commit comments

Comments
 (0)