diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2014-03-19 00:00:28 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2014-03-19 00:00:28 +0100 |
commit | 194d1b9d31993c14ab35965582500bc2dade7947 (patch) | |
tree | 54d6fb89400a046048c6112a9e59a379b291f0a8 /sonar-plugin-api | |
parent | f5bd11bbc574fe1dbb80e7dfe2f66bcaeb60ddbc (diff) | |
parent | 500eff0b5f242d9481329a9bde126a7e1c29ed6f (diff) | |
download | sonarqube-194d1b9d31993c14ab35965582500bc2dade7947.tar.gz sonarqube-194d1b9d31993c14ab35965582500bc2dade7947.zip |
Fix some quality flaws
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/config/PropertyDefinitions.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/config/PropertyDefinitions.java b/sonar-plugin-api/src/main/java/org/sonar/api/config/PropertyDefinitions.java index a160deecc11..00b4af26138 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/config/PropertyDefinitions.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/config/PropertyDefinitions.java @@ -166,7 +166,7 @@ public final class PropertyDefinitions implements BatchComponent, ServerComponen Map<Category, Map<SubCategory, Collection<PropertyDefinition>>> byCategory = new HashMap<Category, Map<SubCategory, Collection<PropertyDefinition>>>(); if (qualifier == null) { // Special categories on global page - HashMap<SubCategory, Collection<PropertyDefinition>> emailSubCategories = new HashMap<SubCategory, Collection<PropertyDefinition>>(); + Map<SubCategory, Collection<PropertyDefinition>> emailSubCategories = new HashMap<SubCategory, Collection<PropertyDefinition>>(); emailSubCategories.put(new SubCategory("email", true), new ArrayList<PropertyDefinition>()); byCategory.put(new Category(CoreProperties.CATEGORY_GENERAL, false), emailSubCategories); |