]> source.dussan.org Git - sonarqube.git/commitdiff
Fix ruby code
authorDavid Gageot <david@gageot.net>
Mon, 8 Oct 2012 08:55:25 +0000 (10:55 +0200)
committerDavid Gageot <david@gageot.net>
Mon, 8 Oct 2012 08:55:25 +0000 (10:55 +0200)
sonar-server/src/main/webapp/WEB-INF/app/models/property.rb

index 8ddeee099d1cac0b4a732fa5a71fbc5a9b53558f..ddcb556c65ff99a12c594507efdd87fa027702da 100644 (file)
@@ -121,7 +121,7 @@ class Property < ActiveRecord::Base
 
   def to_hash_json
     hash = {:key => key, :value => value.to_s}
-    hash.merge! (:values => Property.string_to_array_value(value.to_s)) if multi_values?
+    hash.merge!(:values => Property.string_to_array_value(value.to_s)) if multi_values?
     hash
   end