Use transform_values when possible
This commit is contained in:
parent
b2fe1b856c
commit
db8c3030e3
1 changed files with 2 additions and 5 deletions
|
@ -154,12 +154,9 @@ class Dossier < ActiveRecord::Base
|
|||
end
|
||||
|
||||
def convert_specific_hash_values_to_string(hash_to_convert)
|
||||
hash = {}
|
||||
hash_to_convert.each do |key, value|
|
||||
value = serialize_value_for_export(value)
|
||||
hash.store(key, value)
|
||||
hash_to_convert.transform_values do |value|
|
||||
serialize_value_for_export(value)
|
||||
end
|
||||
hash
|
||||
end
|
||||
|
||||
def full_data_strings_array
|
||||
|
|
Loading…
Add table
Reference in a new issue