aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHector Caballero <hector.caballero@ericsson.com>2017-11-14 10:06:26 -0500
committerHector Caballero <hector.caballero@ericsson.com>2017-11-14 10:08:42 -0500
commit178c5d2f0e94402638b521f6284a6c99149bf6b4 (patch)
tree73c7004f40f85d3cc421383418e6c62635745509
parent9bb126d12d812bb791d8c2f8bf48b5edb25d34ad (diff)
downloadjgit-178c5d2f0e94402638b521f6284a6c99149bf6b4.tar.gz
jgit-178c5d2f0e94402638b521f6284a6c99149bf6b4.zip
Add return tag
Eclipse was complaining about the missing tag for the return type. Change-Id: I43c7e823c3090b19dc8202c1e4d7968e1fa8e6bb Signed-off-by: Hector Caballero <hector.caballero@ericsson.com>
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java5
1 files changed, 3 insertions, 2 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 e034be0dfa..98c991ae25 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/util/FileUtils.java
@@ -117,9 +117,10 @@ public class FileUtils {
*
* @param f
* {@code File} to be converted to {@code Path}
+ * @return the path represented by the file
* @throws IOException
- * in case the path represented by the file
- * is not valid ({@link java.nio.file.InvalidPathException})
+ * in case the path represented by the file is not valid (
+ * {@link java.nio.file.InvalidPathException})
*
* @since 4.10
*/