]> source.dussan.org Git - jgit.git/commitdiff
Fix typo in FileUtils.isStaleFileHandle() javadoc 32/205532/2
authorDariusz Luksza <dariusz.luksza@gmail.com>
Thu, 16 Nov 2023 15:52:38 +0000 (15:52 +0000)
committerDariusz Luksza <dariusz.luksza@gmail.com>
Fri, 17 Nov 2023 23:23:23 +0000 (23:23 +0000)
Signed-off-by: Dariusz Luksza <dariusz.luksza@gmail.com>
Change-Id: Iac431bbcb00f0a1fa36e2ba4af5fe33fcee69e04

org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java

index 842d8ba338e765a8170cf76a3eecfe0bcce675e3..cab0e6a0a9dcb38fe45fe43a3ae8bfc1ca8726f6 100644 (file)
@@ -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) {