Skip to content

Commit

Permalink
[JENKINS-45771] Code review catches bugs (who knew)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenc committed Jul 27, 2017
1 parent d224341 commit 1a7d53e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -438,7 +438,7 @@ public CloneCommand shared() {

@Override
public CloneCommand shared(boolean shared) {
this.shared = true;
this.shared = shared;
return this;
}

Expand Down Expand Up @@ -2369,6 +2369,7 @@ public RevListCommand all(boolean all) {
this.all = all;
return this;
}

public RevListCommand firstParent() {
return firstParent(true);
}
Expand Down
Expand Up @@ -1324,7 +1324,7 @@ public CloneCommand shared() {

@Override
public CloneCommand shared(boolean shared) {
this.shared = true;
this.shared = shared;
return this;
}

Expand Down

0 comments on commit 1a7d53e

Please sign in to comment.