]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7135 WS api/measures/component_tree update description base component is return...
authorTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Thu, 14 Jan 2016 14:12:25 +0000 (15:12 +0100)
committerTeryk Bellahsene <teryk.bellahsene@sonarsource.com>
Thu, 14 Jan 2016 17:53:45 +0000 (18:53 +0100)
server/sonar-server/src/main/java/org/sonar/server/measure/ws/ComponentTreeAction.java

index 13e7de617ed30f55edac3cf03f7d286dccabc170..e13cc234ffca5f3c91a272d698359eaf4a4e72ad 100644 (file)
@@ -109,11 +109,11 @@ public class ComponentTreeAction implements MeasuresWsAction {
       .setExampleValue("FILE_NAM");
 
     action.createParam(PARAM_BASE_COMPONENT_ID)
-      .setDescription("Base component id. The search is based on this component. It is not included in the response.")
+      .setDescription("Base component id. The search is based on this component.")
       .setExampleValue(UUID_EXAMPLE_02);
 
     action.createParam(PARAM_BASE_COMPONENT_KEY)
-      .setDescription("Base component key.The search is based on this component. It is not included in the response.")
+      .setDescription("Base component key.The search is based on this component.")
       .setExampleValue("org.apache.hbas:hbase");
 
     action.createParam(PARAM_METRIC_KEYS)
@@ -152,7 +152,7 @@ public class ComponentTreeAction implements MeasuresWsAction {
 
   private ComponentTreeWsResponse doHandle(ComponentTreeWsRequest request) {
     ComponentTreeData data = dataLoader.load(request);
-    if (data.getComponents()==null) {
+    if (data.getComponents() == null) {
       return emptyResponse(data.getBaseComponent(), request);
     }