From 4e76b3e18e6e0cbbee4728dbb321e7672c81c440 Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Thu, 15 Sep 2011 11:16:46 +0200 Subject: [PATCH] blame viewer throws IOException and RepositoryException --- .../main/java/sonia/scm/repository/BlameViewer.java | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/scm-core/src/main/java/sonia/scm/repository/BlameViewer.java b/scm-core/src/main/java/sonia/scm/repository/BlameViewer.java index 411ddb4b10..a63d44a2f3 100644 --- a/scm-core/src/main/java/sonia/scm/repository/BlameViewer.java +++ b/scm-core/src/main/java/sonia/scm/repository/BlameViewer.java @@ -33,6 +33,10 @@ package sonia.scm.repository; +//~--- JDK imports ------------------------------------------------------------ + +import java.io.IOException; + /** * Interface description * @@ -51,6 +55,10 @@ public interface BlameViewer * @param path * * @return + * + * @throws IOException + * @throws RepositoryException */ - public BlamePagingResult getBlame(String revision, String path); + public BlamePagingResult getBlame(String revision, String path) + throws IOException, RepositoryException; }