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>
stable-2.0
Kevin Sawicki 13 years ago committed by Chris Aniszczyk
parent
commit
8db5414dcf
  1. 8
      org.eclipse.jgit/src/org/eclipse/jgit/api/StashCreateCommand.java

8
org.eclipse.jgit/src/org/eclipse/jgit/api/StashCreateCommand.java

@ -142,9 +142,11 @@ public class StashCreateCommand extends GitCommand<RevCommit> {
* Set the person to use as the author and committer in the commits made * Set the person to use as the author and committer in the commits made
* *
* @param person * @param person
* @return {@code this}
*/ */
public void setPerson(PersonIdent person) { public StashCreateCommand setPerson(PersonIdent person) {
this.person = person; this.person = person;
return this;
} }
/** /**
@ -153,9 +155,11 @@ public class StashCreateCommand extends GitCommand<RevCommit> {
* This value defaults to {@link Constants#R_STASH} * This value defaults to {@link Constants#R_STASH}
* *
* @param ref * @param ref
* @return {@code this}
*/ */
public void setRef(String ref) { public StashCreateCommand setRef(String ref) {
this.ref = ref; this.ref = ref;
return this;
} }
private RevCommit parseCommit(final ObjectReader reader, private RevCommit parseCommit(final ObjectReader reader,

Loading…
Cancel
Save