Skip to content

Commit 934d08c

Browse files
author
Niall Pemberton
committed
Javadoc changes
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@684725 13f79535-47bb-0310-9956-ffa450edef68
1 parent f28c493 commit 934d08c

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1927,13 +1927,15 @@ public static void moveToDirectory(File src, File destDir, boolean createDestDir
19271927
}
19281928

19291929
/**
1930-
* Determines whether the specified file is a link rather than an actual file.
1931-
* Will not return true if there is a symlink anywhere in the path, only if the specific file is.
1930+
* Determines whether the specified file is a Symbolic Link rather than an actual file.
1931+
* <p>
1932+
* Will not return true if there is a Symbolic Link anywhere in the path,
1933+
* only if the specific file is.
19321934
*
19331935
* @param file the file to check
1934-
* @return true iff the file is a symlink
1936+
* @return true if the file is a Symbolic Link
19351937
* @throws IOException if an IO error occurs while checking the file
1936-
* @since 2.0
1938+
* @since IO 2.0
19371939
*/
19381940
public static boolean isSymlink(File file) throws IOException {
19391941
if (file == null) {

0 commit comments

Comments
 (0)