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>
This commit is contained in:
Tomasz Zarna 2014-05-11 21:14:30 +02:00 committed by Matthias Sohn
parent 0b15b48f74
commit b13907f086
1 changed files with 3 additions and 0 deletions

View File

@ -136,6 +136,7 @@ public interface RemoteReader {
* @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 interface RemoteReader {
* @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;