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 * @param ref
* The ref (branch/tag/etc.) to read * The ref (branch/tag/etc.) to read
* @return the sha1 of the remote repository * @return the sha1 of the remote repository
* @throws GitAPIException
*/ */
public ObjectId sha1(String uri, String ref) throws GitAPIException; public ObjectId sha1(String uri, String ref) throws GitAPIException;
@ -149,6 +150,8 @@ public interface RemoteReader {
* @param path * @param path
* The relative path (inside the repo) to the file to read * The relative path (inside the repo) to the file to read
* @return the file content. * @return the file content.
* @throws GitAPIException
* @throws IOException
*/ */
public byte[] readFile(String uri, String ref, String path) public byte[] readFile(String uri, String ref, String path)
throws GitAPIException, IOException; throws GitAPIException, IOException;