diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-11-17 18:45:17 -0500 |
---|---|---|
committer | Gerrit Code Review @ Eclipse.org <gerrit@eclipse.org> | 2023-11-17 18:45:17 -0500 |
commit | d1b0530fee6e308d68052cf63a8a35350a0e15ad (patch) | |
tree | b822a8ff317bd3aed9434be7815ab0a27aa8f396 | |
parent | e4a341db43d5d8a1e6e9c828e3b3e5ddd52b9186 (diff) | |
parent | 823b6a45ff2963d3e00a36de7516c729e4640072 (diff) | |
download | jgit-d1b0530fee6e308d68052cf63a8a35350a0e15ad.tar.gz jgit-d1b0530fee6e308d68052cf63a8a35350a0e15ad.zip |
Merge "Fix typo in FileUtils.isStaleFileHandle() javadoc"
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java b/org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java index 842d8ba338..cab0e6a0a9 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java @@ -631,11 +631,11 @@ public class FileUtils { } /** - * 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 class FileUtils { } /** - * 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) { |