aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-client/src/main
diff options
context:
space:
mode:
authorGodin <mandrikov@gmail.com>2010-09-15 15:06:36 +0000
committerGodin <mandrikov@gmail.com>2010-09-15 15:06:36 +0000
commit739c60296c0abc6e258cb77e1576715437e611fe (patch)
treeabb631a3a7fcc6de5c32890c811d45c3800bb5f0 /sonar-ws-client/src/main
parent83a555da8548a0b4e22874e8a11f91ce9cdabbe6 (diff)
downloadsonarqube-739c60296c0abc6e258cb77e1576715437e611fe.tar.gz
sonarqube-739c60296c0abc6e258cb77e1576715437e611fe.zip
SONAR-1793: Fix wrong URL construction in ViolationQuery, when depth parameter used
Diffstat (limited to 'sonar-ws-client/src/main')
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/services/ViolationQuery.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ViolationQuery.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ViolationQuery.java
index 9cfddcfb3b4..67bc4409546 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ViolationQuery.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/services/ViolationQuery.java
@@ -96,7 +96,7 @@ public class ViolationQuery extends Query<Violation> {
.append("&");
if (depth != 0) {
- url.append("depth").append(depth).append("&");
+ url.append("depth=").append(depth).append("&");
}
append(url, "scopes", scopes);
append(url, "qualifiers", qualifiers);