Allow to set target of DescribeCommand

Change-Id: I04805ce20cc203f5e491406c39b71e7017553b37
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
This commit is contained in:
Matthias Sohn 2013-10-10 18:32:03 +02:00
parent f3d323e9fe
commit 3c2c8b47ff
1 changed files with 3 additions and 2 deletions

View File

@ -107,7 +107,7 @@ protected DescribeCommand(Repository repo) {
* @throws IOException
* a pack file or loose object could not be read.
*/
DescribeCommand setTarget(ObjectId target) throws IOException {
public DescribeCommand setTarget(ObjectId target) throws IOException {
this.target = w.parseCommit(target);
return this;
}
@ -126,7 +126,8 @@ DescribeCommand setTarget(ObjectId target) throws IOException {
* @throws IOException
* a pack file or loose object could not be read.
*/
DescribeCommand setTarget(String rev) throws IOException, RefNotFoundException {
public DescribeCommand setTarget(String rev) throws IOException,
RefNotFoundException {
ObjectId id = repo.resolve(rev);
if (id == null)
throw new RefNotFoundException(MessageFormat.format(JGitText.get().refNotResolved, rev));