added api to fetch a single changeset

This commit is contained in:
Sebastian Sdorra
2012-01-18 19:14:01 +01:00
parent 2d54bd540e
commit 9d29bcd743
6 changed files with 188 additions and 5 deletions

View File

@@ -81,6 +81,20 @@ public class GitChangesetViewer implements ChangesetViewer
//~--- get methods ----------------------------------------------------------
/**
* Method description
*
*
* @param revision
*
* @return
*/
@Override
public Changeset getChangeset(String revision)
{
throw new UnsupportedOperationException("Not supported yet.");
}
/**
* Method description
*

View File

@@ -41,7 +41,6 @@ import com.google.inject.Singleton;
import org.eclipse.jgit.storage.file.FileRepository;
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;
import sonia.scm.NotSupportedFeatuerException;
import sonia.scm.Type;
import sonia.scm.io.FileSystem;
import sonia.scm.plugin.ext.Extension;