diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-12 11:22:17 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-02-12 11:22:17 +0100 |
commit | 1f52154068f1750bcce6cf41715ac056e12372dc (patch) | |
tree | f36fb37db164c2b571d2c13db6b7e08940826d80 /sonar-deprecated/src | |
parent | 9c9ed9f3d84e3dfc736e734d94adb480a8c6c188 (diff) | |
download | sonarqube-1f52154068f1750bcce6cf41715ac056e12372dc.tar.gz sonarqube-1f52154068f1750bcce6cf41715ac056e12372dc.zip |
Fix quality flaws
Diffstat (limited to 'sonar-deprecated/src')
-rw-r--r-- | sonar-deprecated/src/main/java/org/sonar/api/checks/AnnotationCheckFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-deprecated/src/main/java/org/sonar/api/checks/AnnotationCheckFactory.java b/sonar-deprecated/src/main/java/org/sonar/api/checks/AnnotationCheckFactory.java index 5ea3909e9a4..1629acf498f 100644 --- a/sonar-deprecated/src/main/java/org/sonar/api/checks/AnnotationCheckFactory.java +++ b/sonar-deprecated/src/main/java/org/sonar/api/checks/AnnotationCheckFactory.java @@ -67,7 +67,7 @@ public final class AnnotationCheckFactory extends CheckFactory { } @Override - protected Object createCheck(ActiveRule activeRule) { + public Object createCheck(ActiveRule activeRule) { Object object = checksByKey.get(activeRule.getConfigKey()); if (object != null) { return instantiate(activeRule, object); |