]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-5954 Fix (again) backward compatibility of componentRoots parameter
authorJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 13 Jan 2015 09:50:27 +0000 (10:50 +0100)
committerJean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com>
Tue, 13 Jan 2015 09:50:27 +0000 (10:50 +0100)
server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchAction.java

index d21653b59555ea1d2065e175f639d7199143c2b4..88dcf422eef070c7dbec0059d40276479f7bee4d 100644 (file)
@@ -240,13 +240,11 @@ public class SearchAction extends SearchRequestHandler<IssueQuery, Issue> {
       .setDescription("To retrieve issues associated to a specific list of modules (comma-separated list of module keys). " +
         INTERNAL_PARAMETER_DISCLAIMER +
         "Views are not supported. If this parameter is set, moduleUuids must not be set.")
-      .setDeprecatedKey(IssueFilterParameters.COMPONENT_ROOTS)
       .setExampleValue("org.apache.struts:struts");
     action.createParam(IssueFilterParameters.MODULE_UUIDS)
       .setDescription("To retrieve issues associated to a specific list of modules (comma-separated list of module UUIDs). " +
         INTERNAL_PARAMETER_DISCLAIMER +
         "Views are not supported. If this parameter is set, moduleKeys must not be set.")
-      .setDeprecatedKey(IssueFilterParameters.COMPONENT_ROOT_UUIDS)
       .setExampleValue("7d8749e8-3070-4903-9188-bdd82933bb92");
 
     action.createParam(IssueFilterParameters.ON_COMPONENT_ONLY)