From: Dariusz Luksza Date: Thu, 16 Nov 2023 15:52:38 +0000 (+0000) Subject: Fix typo in FileUtils.isStaleFileHandle() javadoc X-Git-Tag: v6.8.0.202311212206-rc1~1^2~1^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fchanges%2F32%2F205532%2F2;p=jgit.git Fix typo in FileUtils.isStaleFileHandle() javadoc Signed-off-by: Dariusz Luksza Change-Id: Iac431bbcb00f0a1fa36e2ba4af5fe33fcee69e04 --- 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) {