diff options
author | Tomasz Zarna <tomasz.zarna@tasktop.com> | 2014-05-11 21:14:30 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2014-05-12 00:40:16 +0200 |
commit | b13907f0869141b1a1342b33de35e515fe8ce124 (patch) | |
tree | dbb1d3b7e41aa80976a004304550faa06a9acb7e /org.eclipse.jgit/src | |
parent | 0b15b48f741f87277e0d1c7d29637430b880dbde (diff) | |
download | jgit-b13907f0869141b1a1342b33de35e515fe8ce124.tar.gz jgit-b13907f0869141b1a1342b33de35e515fe8ce124.zip |
Fix javadoc errors caused by missing tags for declared exceptions
Change-Id: I587aae0ad217ed092f061682ffa66c724f221096
Signed-off-by: Tomasz Zarna <tomasz.zarna@tasktop.com>
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.jgit/src')
-rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java b/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java index f9893644d7..e90abb5fbb 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/gitrepo/RepoCommand.java @@ -136,6 +136,7 @@ public class RepoCommand extends GitCommand<RevCommit> { * @param ref * The ref (branch/tag/etc.) to read * @return the sha1 of the remote repository + * @throws GitAPIException */ public ObjectId sha1(String uri, String ref) throws GitAPIException; @@ -149,6 +150,8 @@ public class RepoCommand extends GitCommand<RevCommit> { * @param path * The relative path (inside the repo) to the file to read * @return the file content. + * @throws GitAPIException + * @throws IOException */ public byte[] readFile(String uri, String ref, String path) throws GitAPIException, IOException; |