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 4637a47 Javadoc.
4637a47 is described below
commit 4637a47647bcc70bc8370c170159096eaae866c2
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jan 11 09:27:38 2021 -0500
Javadoc.
---
src/main/java/org/apache/commons/io/FileUtils.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/io/FileUtils.java
b/src/main/java/org/apache/commons/io/FileUtils.java
index df42b84..f0e9089 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -1312,10 +1312,10 @@ public class FileUtils {
* <li>You get an exception when a file or directory cannot be
deleted.</li>
* </ul>
*
- * @param file file or directory to delete, must not be {@code null}
- * @throws NullPointerException if the directory is {@code null}
- * @throws FileNotFoundException if the file was not found
- * @throws IOException in case deletion is unsuccessful
+ * @param file file or directory to delete, must not be {@code null}.
+ * @throws NullPointerException if the file is {@code null}.
+ * @throws FileNotFoundException if the file was not found.
+ * @throws IOException in case deletion is unsuccessful.
*/
public static void forceDelete(final File file) throws IOException {
Objects.requireNonNull(file, "file");