aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-client
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2014-05-13 09:02:04 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2014-05-13 10:26:25 +0200
commitfd0a3775682343b28a8eea31dd5892e326df3407 (patch)
tree3544d4a7db44ce68145151d60d1ad050ad88af23 /sonar-ws-client
parent0272deedcf5be7cd4cf3374ea43f1f357b053d78 (diff)
downloadsonarqube-fd0a3775682343b28a8eea31dd5892e326df3407.tar.gz
sonarqube-fd0a3775682343b28a8eea31dd5892e326df3407.zip
Remove moduleKey() as it's not returned by the WS
Diffstat (limited to 'sonar-ws-client')
-rw-r--r--sonar-ws-client/src/main/java/org/sonar/wsclient/component/Component.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/sonar-ws-client/src/main/java/org/sonar/wsclient/component/Component.java b/sonar-ws-client/src/main/java/org/sonar/wsclient/component/Component.java
index 5d2e22271db..686799a68ac 100644
--- a/sonar-ws-client/src/main/java/org/sonar/wsclient/component/Component.java
+++ b/sonar-ws-client/src/main/java/org/sonar/wsclient/component/Component.java
@@ -80,12 +80,4 @@ public class Component {
return JsonUtils.getString(json, "path");
}
- /**
- * @since 4.2
- */
- @CheckForNull
- public String moduleKey() {
- return JsonUtils.getString(json, "moduleKey");
- }
-
}