From: Simon Brandhof Date: Tue, 1 Jul 2014 20:13:28 +0000 (+0200) Subject: Fix some quality flaws X-Git-Tag: 4.4-RC1~30 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=09b33b23a4d08ba107572c8b2e8ca30302e41db1;p=sonarqube.git Fix some quality flaws --- diff --git a/sonar-core/src/main/java/org/sonar/core/plugins/PluginClassloaders.java b/sonar-core/src/main/java/org/sonar/core/plugins/PluginClassloaders.java index 976505dc3c4..d00f8242c95 100644 --- a/sonar-core/src/main/java/org/sonar/core/plugins/PluginClassloaders.java +++ b/sonar-core/src/main/java/org/sonar/core/plugins/PluginClassloaders.java @@ -131,10 +131,11 @@ public class PluginClassloaders { } return realm; } catch (UnsupportedClassVersionError e) { - throw new SonarException("The plugin " + plugin.getKey() + " is not supported with Java " + SystemUtils.JAVA_VERSION_TRIMMED, e); + throw new SonarException(String.format("The plugin %s is not supported with Java %s", plugin.getKey(), + SystemUtils.JAVA_VERSION_TRIMMED), e); } catch (Exception e) { - throw new SonarException("Fail to build the classloader of " + plugin.getKey(), e); + throw new SonarException(String.format("Fail to build the classloader of %s", plugin.getKey()), e); } } @@ -146,7 +147,8 @@ public class PluginClassloaders { ClassRealm base = world.getRealm(plugin.getBasePlugin()); if (base == null) { // Ignored, because base plugin is not installed - LOG.warn("Plugin " + plugin.getKey() + " is ignored because base plugin is not installed: " + plugin.getBasePlugin()); + LOG.warn(String.format("Plugin %s is ignored because base plugin is not installed: %s", + plugin.getKey(), plugin.getBasePlugin())); return false; } // we create new realm to be able to return it by key without conversion to baseKey @@ -156,10 +158,12 @@ public class PluginClassloaders { } return true; } catch (UnsupportedClassVersionError e) { - throw new SonarException("The plugin " + plugin.getKey() + " is not supported with Java " + SystemUtils.JAVA_VERSION_TRIMMED, e); + throw new SonarException(String.format("The plugin %s is not supported with Java %s", + plugin.getKey(), SystemUtils.JAVA_VERSION_TRIMMED), e); } catch (Exception e) { - throw new SonarException("Fail to extend the plugin " + plugin.getBasePlugin() + " for " + plugin.getKey(), e); + throw new SonarException(String.format("Fail to extend the plugin %s for %s", + plugin.getBasePlugin(), plugin.getKey()), e); } } @@ -223,10 +227,11 @@ public class PluginClassloaders { return (Plugin) clazz.newInstance(); } catch (UnsupportedClassVersionError e) { - throw new SonarException("The plugin " + plugin.getKey() + " is not supported with Java " + SystemUtils.JAVA_VERSION_TRIMMED, e); + throw new SonarException(String.format("The plugin %s is not supported with Java %s", + plugin.getKey(), SystemUtils.JAVA_VERSION_TRIMMED), e); } catch (Exception e) { - throw new SonarException("Fail to load plugin " + plugin.getKey(), e); + throw new SonarException(String.format("Fail to load plugin %s", plugin.getKey()), e); } } diff --git a/sonar-server/src/main/java/org/sonar/server/measure/persistence/MeasureDao.java b/sonar-server/src/main/java/org/sonar/server/measure/persistence/MeasureDao.java index ef7663576ef..7fbed57dc0f 100644 --- a/sonar-server/src/main/java/org/sonar/server/measure/persistence/MeasureDao.java +++ b/sonar-server/src/main/java/org/sonar/server/measure/persistence/MeasureDao.java @@ -57,7 +57,7 @@ public class MeasureDao extends BaseDao i return session.getMapper(MeasureMapper.class).countByKey(key) > 0; } - public List findByComponentKeyAndMetricKeys(String componentKey, List metricKeys, DbSession session){ + public List findByComponentKeyAndMetricKeys(String componentKey, List metricKeys, DbSession session) { if (metricKeys.isEmpty()) { return Collections.emptyList(); } @@ -71,7 +71,7 @@ public class MeasureDao extends BaseDao i @Override protected MeasureDto doInsert(DbSession session, MeasureDto item) { - throw notImplemented(); + throw notImplemented(); } @Override @@ -89,7 +89,7 @@ public class MeasureDao extends BaseDao i throw notImplemented(); } - private static RuntimeException notImplemented(){ + private static RuntimeException notImplemented() { throw new IllegalStateException("Not implemented yet"); } } diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/RuleActivator.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/RuleActivator.java index 394001c452a..9c6e935c196 100644 --- a/sonar-server/src/main/java/org/sonar/server/qualityprofile/RuleActivator.java +++ b/sonar-server/src/main/java/org/sonar/server/qualityprofile/RuleActivator.java @@ -247,9 +247,13 @@ public class RuleActivator implements ServerComponent { ActiveRuleDto activeRule; ActiveRuleDao dao = db.activeRuleDao(); activeRule = ActiveRuleDto.createFor(context.profile(), context.rule()); - activeRule.setSeverity(change.getSeverity()); - if (change.getInheritance() != null) { - activeRule.setInheritance(change.getInheritance().name()); + String severity = change.getSeverity(); + if (severity != null) { + activeRule.setSeverity(severity); + } + ActiveRule.Inheritance inheritance = change.getInheritance(); + if (inheritance != null) { + activeRule.setInheritance(inheritance.name()); } dao.insert(dbSession, activeRule); for (Map.Entry param : change.getParameters().entrySet()) { @@ -263,9 +267,8 @@ public class RuleActivator implements ServerComponent { } private ActiveRuleDto doUpdate(ActiveRuleChange change, RuleActivatorContext context, DbSession dbSession) { - ActiveRuleDto activeRule; ActiveRuleDao dao = db.activeRuleDao(); - activeRule = context.activeRule(); + ActiveRuleDto activeRule = context.activeRule(); String severity = change.getSeverity(); if (severity != null) { activeRule.setSeverity(severity); diff --git a/sonar-server/src/main/java/org/sonar/server/qualityprofile/db/ActiveRuleDao.java b/sonar-server/src/main/java/org/sonar/server/qualityprofile/db/ActiveRuleDao.java index b8c49eae83d..a79a79a863b 100644 --- a/sonar-server/src/main/java/org/sonar/server/qualityprofile/db/ActiveRuleDao.java +++ b/sonar-server/src/main/java/org/sonar/server/qualityprofile/db/ActiveRuleDao.java @@ -32,6 +32,7 @@ import org.sonar.core.qualityprofile.db.ActiveRuleKey; import org.sonar.core.qualityprofile.db.ActiveRuleMapper; import org.sonar.core.qualityprofile.db.ActiveRuleParamDto; import org.sonar.core.qualityprofile.db.QualityProfileDao; +import org.sonar.core.qualityprofile.db.QualityProfileDto; import org.sonar.core.rule.RuleDto; import org.sonar.server.db.BaseDao; import org.sonar.server.rule.db.RuleDao; @@ -95,13 +96,15 @@ public class ActiveRuleDao extends BaseDao templateRuleParams = dbClient.ruleDao().findRuleParamsByRuleKey(dbSession, templateRule.getKey()); List paramKeys = new ArrayList(); @@ -280,7 +291,7 @@ public class RuleUpdater implements ServerComponent { } private void deleteOrUpdateParameters(DbSession dbSession, RuleUpdate update, RuleDto customRule, List paramKeys, - Multimap activeRules, Multimap activeRuleParams){ + Multimap activeRules, Multimap activeRuleParams) { for (RuleParamDto ruleParamDto : dbClient.ruleDao().findRuleParamsByRuleKey(dbSession, update.getRuleKey())) { String key = ruleParamDto.getName(); String value = update.parameter(key); @@ -315,7 +326,7 @@ public class RuleUpdater implements ServerComponent { } private void createNewParameters(DbSession dbSession, RuleUpdate update, RuleDto customRule, List templateRuleParams, List paramKeys, - Multimap activeRules){ + Multimap activeRules) { for (RuleParamDto templateRuleParam : templateRuleParams) { String key = templateRuleParam.getName(); if (!paramKeys.contains(key)) {