lib/relaton_ieee/xml_parser.rb in relaton-ieee-1.2.0 vs lib/relaton_ieee/xml_parser.rb in relaton-ieee-1.3.0
- old
+ new
@@ -11,10 +11,10 @@
ext = item.at "./ext"
return data unless ext
data[:committee] = ext.xpath("./committee").map do |c|
Committee.new(
- type: c[:type], name: c.at("name").text, chair: c.at("chair")&.text,
+ type: c[:type], name: c.at("name").text, chair: c.at("chair")&.text
)
end
data
end