fix broken build

This commit is contained in:
Sebastian Sdorra
2011-09-15 13:27:02 +02:00
parent 158d3552c3
commit 5daade4f7b
2 changed files with 71 additions and 37 deletions

View File

@@ -46,6 +46,10 @@ import sonia.scm.cache.Cache;
import sonia.scm.cache.CacheManager;
import sonia.scm.util.AssertUtil;
//~--- JDK imports ------------------------------------------------------------
import java.io.IOException;
/**
* Class description
*
@@ -95,12 +99,14 @@ public class BlameViewerUtil extends CacheClearHook
*
* @return
*
*
* @throws IOException
* @throws NotSupportedFeatuerException
* @throws RepositoryException
*/
public BlamePagingResult getBlame(String repositoryId, String revision,
String path)
throws RepositoryException, NotSupportedFeatuerException
throws RepositoryException, NotSupportedFeatuerException, IOException
{
AssertUtil.assertIsNotEmpty(repositoryId);
@@ -125,12 +131,14 @@ public class BlameViewerUtil extends CacheClearHook
*
* @return
*
*
* @throws IOException
* @throws NotSupportedFeatuerException
* @throws RepositoryException
*/
public BlamePagingResult getBlame(Repository repository, String revision,
String path)
throws RepositoryException, NotSupportedFeatuerException
throws RepositoryException, NotSupportedFeatuerException, IOException
{
AssertUtil.assertIsNotNull(repository);