* @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;
}
* @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));