Skip to content

Commit fc1e535

Browse files
author
Gary Gregory
committed
Javadoc
1 parent 01714da commit fc1e535

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

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

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
* </p>
112112
*/
113113
public class FileUtils {
114+
114115
/**
115116
* The number of bytes in a kilobyte.
116117
*/
@@ -1231,7 +1232,6 @@ private static void deleteDirectoryOnExit(final File directory) throws IOExcepti
12311232
* @param file file or directory to delete, can be {@code null}
12321233
* @return {@code true} if the file or directory was deleted, otherwise
12331234
* {@code false}
1234-
*
12351235
* @since 1.4
12361236
*/
12371237
public static boolean deleteQuietly(final File file) {
@@ -1452,7 +1452,6 @@ private static File getParentFile(final File file) {
14521452
* Returns a {@link File} representing the system temporary directory.
14531453
*
14541454
* @return the system temporary directory.
1455-
*
14561455
* @since 2.0
14571456
*/
14581457
public static File getTempDirectory() {
@@ -1463,7 +1462,6 @@ public static File getTempDirectory() {
14631462
* Returns the path to the system temporary directory.
14641463
*
14651464
* @return the path to the system temporary directory.
1466-
*
14671465
* @since 2.0
14681466
*/
14691467
public static String getTempDirectoryPath() {
@@ -1474,7 +1472,6 @@ public static String getTempDirectoryPath() {
14741472
* Returns a {@link File} representing the user's home directory.
14751473
*
14761474
* @return the user's home directory.
1477-
*
14781475
* @since 2.0
14791476
*/
14801477
public static File getUserDirectory() {
@@ -1485,7 +1482,6 @@ public static File getUserDirectory() {
14851482
* Returns the path to the user's home directory.
14861483
*
14871484
* @return the path to the user's home directory.
1488-
*
14891485
* @since 2.0
14901486
*/
14911487
public static String getUserDirectoryPath() {
@@ -1743,7 +1739,6 @@ public static boolean isFileNewer(final File file, final OffsetDateTime offsetDa
17431739
* @throws NullPointerException if the file or local date is {@code null}.
17441740
* @see ZoneId#systemDefault()
17451741
* @see LocalTime#now()
1746-
*
17471742
* @since 2.8.0
17481743
*/
17491744
public static boolean isFileOlder(final File file, final ChronoLocalDate chronoLocalDate) {

0 commit comments

Comments
 (0)