Fix typo in FileUtils.isStaleFileHandle() javadoc

Signed-off-by: Dariusz Luksza <dariusz.luksza@gmail.com>
Change-Id: Iac431bbcb00f0a1fa36e2ba4af5fe33fcee69e04
This commit is contained in:
Dariusz Luksza 2023-11-16 15:52:38 +00:00
parent 52af8dbaff
commit 823b6a45ff
1 changed files with 5 additions and 5 deletions

View File

@ -631,11 +631,11 @@ else if (!caseSensitive
}
/**
* Determine if an IOException is a Stale NFS File Handle
* Determine if an IOException is a stale NFS file handle
*
* @param ioe
* an {@link java.io.IOException} object.
* @return a boolean true if the IOException is a Stale NFS FIle Handle
* @return a boolean true if the IOException is a stale NFS file handle
* @since 4.1
*/
public static boolean isStaleFileHandle(IOException ioe) {
@ -646,13 +646,13 @@ public static boolean isStaleFileHandle(IOException ioe) {
}
/**
* Determine if a throwable or a cause in its causal chain is a Stale NFS
* File Handle
* Determine if a throwable or a cause in its causal chain is a stale NFS
* file handle
*
* @param throwable
* a {@link java.lang.Throwable} object.
* @return a boolean true if the throwable or a cause in its causal chain is
* a Stale NFS File Handle
* a stale NFS file handle
* @since 4.7
*/
public static boolean isStaleFileHandleInCausalChain(Throwable throwable) {