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:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user