]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3432 Dead code
authorDavid Gageot <david@gageot.net>
Fri, 6 Jul 2012 12:17:41 +0000 (14:17 +0200)
committerDavid Gageot <david@gageot.net>
Fri, 6 Jul 2012 12:17:41 +0000 (14:17 +0200)
sonar-server/src/main/webapp/WEB-INF/app/helpers/rules_configuration_helper.rb
sonar-server/src/main/webapp/WEB-INF/app/helpers/widget_properties_helper.rb

index 6065bfc68f11396dbb42672574b972ae49006aab..1a8fb4051d324207b9775beaf6049a0664de71bb 100644 (file)
 module RulesConfigurationHelper
   include PropertiesHelper
 
-  PARAM_TYPE_STRING = "s"
   PARAM_TYPE_STRING_LIST = "s{}"
-  PARAM_TYPE_INTEGER = "i"
   PARAM_TYPE_INTEGER_LIST = "i{}"
-  PARAM_TYPE_BOOLEAN = "b"
   PARAM_TYPE_REGEXP = "r"
 
   # Kept for compatibility with old rule param type
   def type_with_compatibility(type)
-    return PropertyType::TYPE_STRING if type == PARAM_TYPE_STRING
+    return PropertyType::TYPE_STRING if type == 's'
     return PropertyType::TYPE_STRING if type == PARAM_TYPE_STRING_LIST
-    return PropertyType::TYPE_INTEGER if type == PARAM_TYPE_INTEGER
+    return PropertyType::TYPE_INTEGER if type == 'i'
     return PropertyType::TYPE_INTEGER if type == PARAM_TYPE_INTEGER_LIST
-    return PropertyType::TYPE_BOOLEAN if type == PARAM_TYPE_BOOLEAN
+    return PropertyType::TYPE_BOOLEAN if type == 'b'
     return PropertyType::TYPE_STRING if type == PARAM_TYPE_REGEXP
     return PropertyType::TYPE_STRING if is_set(type)
 
@@ -41,11 +38,11 @@ module RulesConfigurationHelper
   end
 
   def readable_type(type)
-    return "Set of string (, as delimiter)" if type == PARAM_TYPE_STRING_LIST
+    return "Set of comma delimited strings" if type == PARAM_TYPE_STRING_LIST
     return "Number" if type_with_compatibility(type) == PropertyType::TYPE_INTEGER
-    return "Set of number (, as delimiter)" if type == PARAM_TYPE_INTEGER_LIST
+    return "Set of comma delimited numbers" if type == PARAM_TYPE_INTEGER_LIST
     return "Regular expression" if type == PARAM_TYPE_REGEXP
-    return "Set of values (, as delimiter)" if is_set(type)
+    return "Set of comma delimited values" if is_set(type)
     ""
   end
 
@@ -63,17 +60,15 @@ module RulesConfigurationHelper
     type=type_with_compatibility(param_type)
 
     if is_set_type
-      allowed_tokens = get_allowed_tokens
-      attribute.split(',').each do |provided_token|
-        if !allowed_tokens.include?(provided_token)
-          errors.add("#{value}", "'#{provided_token}' kust be one of : " + allowed_tokens.join(', '))
+      attribute.split(',').each do |v|
+        if !get_allowed_tokens.include?(v)
+          errors.add("#{value}", "'#{v}' must be one of : " + get_allowed_tokens.join(', '))
         end
       end
     elsif param_type == RulesConfigurationHelper::PARAM_TYPE_INTEGER_LIST
       attribute.split(',').each do |n|
         if !Api::Utils.is_integer?(n)
           errors.add("#{value}", "'#{n}' must be an integer.")
-          return
         end
       end
     elsif param_type == RulesConfigurationHelper::PARAM_TYPE_REGEXP
index 39a3508722930335c0e45b92fb379e9a61ca04b0..dd53bcf1c5547a0087be3840548c07ebd44cbba4 100644 (file)
@@ -21,7 +21,7 @@ module WidgetPropertiesHelper
   include PropertiesHelper
 
   def property_value_field(definition, value)
-    property_value(definition.key(), definition.type.name(), value || definition.defaultValue())
+    property_value definition.key(), definition.type.name(), value || definition.defaultValue()
   end
 
   def resource_value_field(value)