diff options
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/rules/ActiveRuleParam.java | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/rules/ActiveRuleParam.java b/sonar-plugin-api/src/main/java/org/sonar/api/rules/ActiveRuleParam.java index bb18090b378..61e5a0a5b3d 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/rules/ActiveRuleParam.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/rules/ActiveRuleParam.java @@ -27,18 +27,6 @@ public class ActiveRuleParam implements Cloneable { private String paramKey; private String value; - public Integer getId() { - return id; - } - - /** - * @deprecated visibility should be decreased to protected or package - */ - @Deprecated - void setId(Integer id) { - this.id = id; - } - /** * @deprecated visibility should be decreased to protected or package */ @@ -57,6 +45,18 @@ public class ActiveRuleParam implements Cloneable { this.paramKey = ruleParam.getKey(); } + public Integer getId() { + return id; + } + + /** + * @deprecated visibility should be decreased to protected or package + */ + @Deprecated + void setId(Integer id) { + this.id = id; + } + public ActiveRule getActiveRule() { return activeRule; } |