Quellcode durchsuchen

Allow to set target of DescribeCommand

Change-Id: I04805ce20cc203f5e491406c39b71e7017553b37
Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
tags/v3.2.0.201311130903-m3
Matthias Sohn vor 10 Jahren
Ursprung
Commit
3c2c8b47ff
1 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen
  1. 3
    2
      org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java

+ 3
- 2
org.eclipse.jgit/src/org/eclipse/jgit/api/DescribeCommand.java Datei anzeigen

@@ -107,7 +107,7 @@ public class DescribeCommand extends GitCommand<String> {
* @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 @@ public class DescribeCommand extends GitCommand<String> {
* @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));

Laden…
Abbrechen
Speichern