From: Julien Lancelot Date: Mon, 28 Apr 2014 11:36:14 +0000 (+0200) Subject: Fix quality flaws X-Git-Tag: 4.4-RC1~1377^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=adab7517ae4c4cfa293b5720b66fd7b5ec4e026b;p=sonarqube.git Fix quality flaws --- diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActiveRuleOperations.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActiveRuleOperations.java index b5b00e3b619..f5d9beb7adc 100644 --- a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActiveRuleOperations.java +++ b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileActiveRuleOperations.java @@ -111,8 +111,7 @@ public class QProfileActiveRuleOperations implements ServerComponent { ActiveRuleDto createActiveRule(int profileId, RuleKey ruleKey, String severity, SqlSession session) { RuleDto rule = ruleDao.selectByKey(ruleKey, session); - QProfileValidations.checkRuleIsNotNull(rule); - return createActiveRule(profileId, rule.getId(), severity, session); + return createActiveRule(profileId, QProfileValidations.checkRuleIsNotNull(rule).getId(), severity, session); } private ActiveRuleDto createActiveRule(int profileId, int ruleId, String severity, SqlSession session) { diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileValidations.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileValidations.java index 255ead1ddb8..8d76ca8e000 100644 --- a/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileValidations.java +++ b/sonar-server/src/main/java/org/sonar/server/qualityprofile/QProfileValidations.java @@ -33,21 +33,24 @@ public class QProfileValidations { // Only static methods } - public static void checkProfileIsNotNull(@Nullable QualityProfileDto profile) { + public static QualityProfileDto checkProfileIsNotNull(@Nullable QualityProfileDto profile) { if (profile == null) { throw new NotFoundException("This quality profile does not exists."); } + return profile; } - public static void checkRuleIsNotNull(@Nullable RuleDto rule) { + public static RuleDto checkRuleIsNotNull(@Nullable RuleDto rule) { if (rule == null) { throw new NotFoundException("This rule does not exists."); } + return rule; } - public static void checkActiveRuleIsNotNull(@Nullable ActiveRuleDto activeRule) { + public static ActiveRuleDto checkActiveRuleIsNotNull(@Nullable ActiveRuleDto activeRule) { if (activeRule == null) { throw new NotFoundException("This active rule does not exists."); } + return activeRule; } }