aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-06-22 16:37:21 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-06-27 18:19:46 +0200
commitd20ca1857a018a6b255a6eae7e5eeb71b31c22ab (patch)
tree9b6d91f085b23546e225a48f4d541870fe81bd19 /sonar-ws
parent4ecb6fc3ec08ee37a1bb5c19d8ca44e2b832b5a7 (diff)
downloadsonarqube-d20ca1857a018a6b255a6eae7e5eeb71b31c22ab.tar.gz
sonarqube-d20ca1857a018a6b255a6eae7e5eeb71b31c22ab.zip
SONAR-7800 add column PROJECTS.UUID_PATH
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/java/org/sonarqube/ws/client/measure/ComponentTreeWsRequest.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-ws/src/main/java/org/sonarqube/ws/client/measure/ComponentTreeWsRequest.java b/sonar-ws/src/main/java/org/sonarqube/ws/client/measure/ComponentTreeWsRequest.java
index 1d7322a486b..233eae10665 100644
--- a/sonar-ws/src/main/java/org/sonarqube/ws/client/measure/ComponentTreeWsRequest.java
+++ b/sonar-ws/src/main/java/org/sonarqube/ws/client/measure/ComponentTreeWsRequest.java
@@ -102,12 +102,11 @@ public class ComponentTreeWsRequest {
return this;
}
- @CheckForNull
public List<String> getSort() {
return sort;
}
- public ComponentTreeWsRequest setSort(@Nullable List<String> sort) {
+ public ComponentTreeWsRequest setSort(List<String> sort) {
this.sort = sort;
return this;
}