ListChildProjects: Make settting recursive option chainable
Change-Id: I4ffa174cd8ba2b062cd230a8e116f45c65f58693
This commit is contained in:

committed by
David Pursehouse

parent
d3039e7143
commit
712f699db9
@@ -56,8 +56,9 @@ public class ListChildProjects implements RestReadView<ProjectResource> {
|
||||
this.queryProvider = queryProvider;
|
||||
}
|
||||
|
||||
public void setRecursive(boolean recursive) {
|
||||
public ListChildProjects withRecursive(boolean recursive) {
|
||||
this.recursive = recursive;
|
||||
return this;
|
||||
}
|
||||
|
||||
public ListChildProjects withLimit(int limit) {
|
||||
|
Reference in New Issue
Block a user