Fix formating

This commit is contained in:
YNH Webdev
2013-09-25 10:08:10 +02:00
parent 4d0dc964da
commit 7b0d264aab

View File

@@ -58,11 +58,11 @@ feature -- Change Element
require require
key_not_present: not has_key (key) key_not_present: not has_key (key)
local local
l_value: detachable JSON_STRING l_value: detachable JSON_STRING
do do
if attached value as v then if attached value as v then
create l_value.make_json_from_string_32 (v.as_string_32) create l_value.make_json_from_string_32 (v.as_string_32)
end end
put (l_value, key) put (l_value, key)
end end
@@ -126,11 +126,11 @@ feature -- Change Element
-- Assuming there is no item of key `key', -- Assuming there is no item of key `key',
-- insert `value' with `key'. -- insert `value' with `key'.
local local
l_value: detachable JSON_STRING l_value: detachable JSON_STRING
do do
if attached value as v then if attached value as v then
create l_value.make_json_from_string_32 (v.as_string_32) create l_value.make_json_from_string_32 (v.as_string_32)
end end
replace (l_value, key) replace (l_value, key)
end end