From 1b94b0660a8d2300130391618f3b7d880160cd0f Mon Sep 17 00:00:00 2001 From: David Gageot Date: Mon, 8 Oct 2012 10:55:25 +0200 Subject: [PATCH] Fix ruby code --- sonar-server/src/main/webapp/WEB-INF/app/models/property.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5