aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-01-24 10:49:35 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-01-25 11:41:56 +0100
commit3469a119ac9d3f585b0f4858dead8c10d6b2d3eb (patch)
tree058eb028389cf8bc9b50afed5c11b186591de202 /sonar-ws
parent4db55222107bb8600e791190e8bc2f8c7e333ee0 (diff)
downloadsonarqube-3469a119ac9d3f585b0f4858dead8c10d6b2d3eb.tar.gz
sonarqube-3469a119ac9d3f585b0f4858dead8c10d6b2d3eb.zip
SONAR-8675 drop unused param "q" in api/projects/search_my_projects
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/java/org/sonarqube/ws/client/project/SearchMyProjectsRequest.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/project/SearchMyProjectsRequest.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/project/SearchMyProjectsRequest.java
index e73c3a1a58a..7d1a06ba153 100644
--- a/sonar-ws/src/main/java/org/sonarqube/ws/client/project/SearchMyProjectsRequest.java
+++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/project/SearchMyProjectsRequest.java
@@ -26,22 +26,15 @@ import javax.annotation.concurrent.Immutable;
@Immutable
public class SearchMyProjectsRequest {
- private final String query;
private final Integer page;
private final Integer pageSize;
private SearchMyProjectsRequest(Builder builder) {
- this.query = builder.query;
this.page = builder.page;
this.pageSize = builder.pageSize;
}
@CheckForNull
- public String getQuery() {
- return query;
- }
-
- @CheckForNull
public Integer getPage() {
return page;
}
@@ -56,7 +49,6 @@ public class SearchMyProjectsRequest {
}
public static class Builder {
- private String query;
private Integer page;
private Integer pageSize;
@@ -64,11 +56,6 @@ public class SearchMyProjectsRequest {
// enforce method constructor
}
- public Builder setQuery(@Nullable String query) {
- this.query = query;
- return this;
- }
-
public Builder setPage(@Nullable Integer page) {
this.page = page;
return this;