summaryrefslogtreecommitdiff
path: root/ext/psych/lib/psych/json/yaml_events.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/psych/lib/psych/json/yaml_events.rb')
-rw-r--r--ext/psych/lib/psych/json/yaml_events.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/psych/lib/psych/json/yaml_events.rb b/ext/psych/lib/psych/json/yaml_events.rb
index 01d4660f85..d054d9b458 100644
--- a/ext/psych/lib/psych/json/yaml_events.rb
+++ b/ext/psych/lib/psych/json/yaml_events.rb
@@ -10,11 +10,11 @@ module Psych
end
def start_mapping anchor, tag, implicit, style
- super(anchor, nil, implicit, Nodes::Mapping::FLOW)
+ super(anchor, nil, true, Nodes::Mapping::FLOW)
end
def start_sequence anchor, tag, implicit, style
- super(anchor, nil, implicit, Nodes::Sequence::FLOW)
+ super(anchor, nil, true, Nodes::Sequence::FLOW)
end
def scalar value, anchor, tag, plain, quoted, style