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 2019/10/11 15:24:24 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 6ce3e00  Javadoc.
6ce3e00 is described below

commit 6ce3e0014c330832c8a8719db65d6305157f86db
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Oct 11 11:24:20 2019 -0400

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

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java
index def8e93..93ac008 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -1320,9 +1320,9 @@ public class FileUtils {
      * The difference between File.delete() and this method are:
      * </p>
      * <ul>
-     * <li>A directory to be deleted does not have to be empty.</li>
-     * <li>You get exceptions when a file or directory cannot be deleted.
-     * (java.io.File methods returns a boolean)</li>
+     * <li>The directory does not have to be empty.</li>
+     * <li>You get exceptions when a file or directory cannot be delete; 
+     * {@link java.io.File#delete()} returns a boolean.</li>
      * </ul>
      *
      * @param file file or directory to delete, must not be {@code null}