aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org
diff options
context:
space:
mode:
authorGary Gregory <gardgregory@gmail.com>2022-08-13 10:38:59 -0400
committerGary Gregory <gardgregory@gmail.com>2022-08-13 10:38:59 -0400
commitfc1e53506ecb0f97b85034a8628eab31278824b4 (patch)
tree4571bd724eafc96de92c8b0e5f27a2a999e01457 /src/main/java/org
parent01714daaf4b8bac9add5e3ffa1b23bfdc3e321d2 (diff)
downloadapache-commons-io-fc1e53506ecb0f97b85034a8628eab31278824b4.tar.gz
Javadoc
Diffstat (limited to 'src/main/java/org')
-rw-r--r--src/main/java/org/apache/commons/io/FileUtils.java7
1 files changed, 1 insertions, 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) {