diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-02-09 13:10:08 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2015-02-09 13:10:08 +0100 |
commit | f32ae830af90b130ea73c66cd2a0b3a39f876afd (patch) | |
tree | 0e787de5ffad7911402ecdbb3c2a0ee7b60e4fea /sonar-batch-protocol | |
parent | 3dcf41ab1127fe59b943c1e79f173fcbd45e9e6c (diff) | |
parent | b49f4a0e2dc098099f2172e24a48768a983f96f5 (diff) | |
download | sonarqube-f32ae830af90b130ea73c66cd2a0b3a39f876afd.tar.gz sonarqube-f32ae830af90b130ea73c66cd2a0b3a39f876afd.zip |
Merge remote-tracking branch 'origin/branch-5.0'
Conflicts:
server/sonar-server/src/main/java/org/sonar/server/batch/ProjectRepositoryLoader.java
server/sonar-server/src/test/java/org/sonar/server/batch/ProjectRepositoryLoaderMediumTest.java
server/sonar-server/src/test/java/org/sonar/server/rule/RuleTesting.java
sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/ActiveRule.java
sonar-batch/src/test/java/org/sonar/batch/mediumtest/issues/IssuesMediumTest.java
sonar-batch/src/test/java/org/sonar/batch/mediumtest/issues/IssuesOnDirMediumTest.java
Diffstat (limited to 'sonar-batch-protocol')
-rw-r--r-- | sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/ActiveRule.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/ActiveRule.java b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/ActiveRule.java index ab6e6c64192..219f8a536ea 100644 --- a/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/ActiveRule.java +++ b/sonar-batch-protocol/src/main/java/org/sonar/batch/protocol/input/ActiveRule.java @@ -31,7 +31,7 @@ public class ActiveRule { private final Map<String, String> params = new HashMap<String, String>(); public ActiveRule(String repositoryKey, String ruleKey, @Nullable String templateRuleKey, String name, @Nullable String severity, - @Nullable String internalKey, @Nullable String language) { + @Nullable String internalKey, @Nullable String language) { this.repositoryKey = repositoryKey; this.ruleKey = ruleKey; this.templateRuleKey = templateRuleKey; |