From: David Gageot Date: Mon, 8 Oct 2012 08:55:25 +0000 (+0200) Subject: Fix ruby code X-Git-Tag: 3.3~88 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1b94b0660a8d2300130391618f3b7d880160cd0f;p=sonarqube.git Fix ruby code --- diff --git a/sonar-server/src/main/webapp/WEB-INF/app/models/property.rb b/sonar-server/src/main/webapp/WEB-INF/app/models/property.rb index 8ddeee099d1..ddcb556c65f 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/models/property.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/models/property.rb @@ -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