From: Julien Lancelot Date: Tue, 13 May 2014 07:02:04 +0000 (+0200) Subject: Remove moduleKey() as it's not returned by the WS X-Git-Tag: 4.4-RC1~1112 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=fd0a3775682343b28a8eea31dd5892e326df3407;p=sonarqube.git Remove moduleKey() as it's not returned by the WS --- 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"); - } - }