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 2022/08/13 15:35:22 UTC

[commons-io] 02/03: 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

commit fc1e53506ecb0f97b85034a8628eab31278824b4
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Aug 13 10:38:59 2022 -0400

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

diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java
index 66764263..0ce8e97e 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -111,6 +111,7 @@ import org.apache.commons.io.function.Uncheck;
  * </p>
  */
 public class FileUtils {
+
     /**
      * The number of bytes in a kilobyte.
      */
@@ -1231,7 +1232,6 @@ public class FileUtils {
      * @param file file or directory to delete, can be {@code null}
      * @return {@code true} if the file or directory was deleted, otherwise
      * {@code false}
-     *
      * @since 1.4
      */
     public static boolean deleteQuietly(final File file) {
@@ -1452,7 +1452,6 @@ public class FileUtils {
      * Returns a {@link File} representing the system temporary directory.
      *
      * @return the system temporary directory.
-     *
      * @since 2.0
      */
     public static File getTempDirectory() {
@@ -1463,7 +1462,6 @@ public class FileUtils {
      * Returns the path to the system temporary directory.
      *
      * @return the path to the system temporary directory.
-     *
      * @since 2.0
      */
     public static String getTempDirectoryPath() {
@@ -1474,7 +1472,6 @@ public class FileUtils {
      * Returns a {@link File} representing the user's home directory.
      *
      * @return the user's home directory.
-     *
      * @since 2.0
      */
     public static File getUserDirectory() {
@@ -1485,7 +1482,6 @@ public class FileUtils {
      * Returns the path to the user's home directory.
      *
      * @return the path to the user's home directory.
-     *
      * @since 2.0
      */
     public static String getUserDirectoryPath() {
@@ -1743,7 +1739,6 @@ public class FileUtils {
      * @throws NullPointerException if the file or local date is {@code null}.
      * @see ZoneId#systemDefault()
      * @see LocalTime#now()
-     *
      * @since 2.8.0
      */
     public static boolean isFileOlder(final File file, final ChronoLocalDate chronoLocalDate) {