From: Jean-Baptiste Lievremont Date: Tue, 13 Jan 2015 09:50:27 +0000 (+0100) Subject: SONAR-5954 Fix (again) backward compatibility of componentRoots parameter X-Git-Tag: latest-silver-master-#65~238 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=952ed409d9b2a6822e87f3fa49a32769b91e4d84;p=sonarqube.git SONAR-5954 Fix (again) backward compatibility of componentRoots parameter --- diff --git a/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchAction.java b/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchAction.java index d21653b5955..88dcf422eef 100644 --- a/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchAction.java +++ b/server/sonar-server/src/main/java/org/sonar/server/issue/ws/SearchAction.java @@ -240,13 +240,11 @@ public class SearchAction extends SearchRequestHandler { .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)