Projects#ListRequest.withAll: Pass explicit boolean

Change the signature of the `withAll` method to take an explicit
boolean. This makes it consistent with `withTree`.

The `withAll` method was added in change I9301fd550, which has not
yet been included in any release, therefore changing it will not
break the API.

Change-Id: Ibdfb969f4b03ce33b9ebf09b2186fedc6b28ba20
This commit is contained in:
David Pursehouse
2017-11-28 13:15:36 +09:00
parent bde59814e6
commit 1b1bb97571
2 changed files with 3 additions and 3 deletions

View File

@@ -153,8 +153,8 @@ public interface Projects {
return this;
}
public ListRequest withAll() {
this.all = true;
public ListRequest withAll(boolean all) {
this.all = all;
return this;
}