diff options
author | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-05-05 10:33:18 +0200 |
---|---|---|
committer | Stephane Gamard <stephane.gamard@searchbox.com> | 2014-05-05 10:50:19 +0200 |
commit | cab17f133fb105496dc95c5f8a445b4c09d1ed4c (patch) | |
tree | 2dfc07aa6ad63e22259ac3be693bcb3e861f5bba /sonar-plugin-api/src/main/java/org | |
parent | 7afa75cf2ad87fa214502bf93c85d4a150bea5e4 (diff) | |
download | sonarqube-cab17f133fb105496dc95c5f8a445b4c09d1ed4c.tar.gz sonarqube-cab17f133fb105496dc95c5f8a445b4c09d1ed4c.zip |
Moving AcgiveRuleDao to BaseDao Impl
Diffstat (limited to 'sonar-plugin-api/src/main/java/org')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/rule/RuleKey.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/rule/RuleKey.java b/sonar-plugin-api/src/main/java/org/sonar/api/rule/RuleKey.java index 1d9b463fdc2..73a41ce1f06 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/rule/RuleKey.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/rule/RuleKey.java @@ -32,9 +32,9 @@ import java.io.Serializable; public class RuleKey implements Serializable { private final String repository, rule; - private RuleKey(String repository, String rule) { - this.repository = repository; - this.rule = rule; + protected RuleKey(String repositoryKey, String ruleKey) { + this.repository = repositoryKey; + this.rule = ruleKey; } /** |