diff options
Diffstat (limited to 'org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryCache.java')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryCache.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryCache.java b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryCache.java index 41f291b57b..6288447a8d 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryCache.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/lib/RepositoryCache.java @@ -382,6 +382,8 @@ public class RepositoryCache { private final FS fs; /** + * Create a pointer to a location on disk. + * * @param directory * exact location of the repository. * @param fs @@ -401,7 +403,11 @@ public class RepositoryCache { } } - /** @return location supplied to the constructor. */ + /** + * Get directory containing the repository database + * + * @return directory containing the repository database. + */ public final File getFile() { return path; } |