Browse Source

Return command from StashCreateCommand setters

Previously were void which made them inconsistent with
the fluid setter pattern used in other commands.

Change-Id: Idb81dfc7bb097306f0c5d6e34f91a2bbab501668
Signed-off-by: Chris Aniszczyk <zx@twitter.com>
tags/v2.0.0.201206130900-r
Kevin Sawicki 12 years ago
parent
commit
8db5414dcf
1 changed files with 6 additions and 2 deletions
  1. 6
    2
      org.eclipse.jgit/src/org/eclipse/jgit/api/StashCreateCommand.java

+ 6
- 2
org.eclipse.jgit/src/org/eclipse/jgit/api/StashCreateCommand.java View File

@@ -142,9 +142,11 @@ public class StashCreateCommand extends GitCommand<RevCommit> {
* Set the person to use as the author and committer in the commits made
*
* @param person
* @return {@code this}
*/
public void setPerson(PersonIdent person) {
public StashCreateCommand setPerson(PersonIdent person) {
this.person = person;
return this;
}

/**
@@ -153,9 +155,11 @@ public class StashCreateCommand extends GitCommand<RevCommit> {
* This value defaults to {@link Constants#R_STASH}
*
* @param ref
* @return {@code this}
*/
public void setRef(String ref) {
public StashCreateCommand setRef(String ref) {
this.ref = ref;
return this;
}

private RevCommit parseCommit(final ObjectReader reader,

Loading…
Cancel
Save