Skip to content

Commit 4637a47

Browse files
author
Gary Gregory
committed
Javadoc.
1 parent 1d4d187 commit 4637a47

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/io/FileUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,10 +1312,10 @@ private static void doCopyFile(final File srcFile, final File destFile, final bo
13121312
* <li>You get an exception when a file or directory cannot be deleted.</li>
13131313
* </ul>
13141314
*
1315-
* @param file file or directory to delete, must not be {@code null}
1316-
* @throws NullPointerException if the directory is {@code null}
1317-
* @throws FileNotFoundException if the file was not found
1318-
* @throws IOException in case deletion is unsuccessful
1315+
* @param file file or directory to delete, must not be {@code null}.
1316+
* @throws NullPointerException if the file is {@code null}.
1317+
* @throws FileNotFoundException if the file was not found.
1318+
* @throws IOException in case deletion is unsuccessful.
13191319
*/
13201320
public static void forceDelete(final File file) throws IOException {
13211321
Objects.requireNonNull(file, "file");

0 commit comments

Comments
 (0)