diff --git a/lib/dump/snapshot.rb b/lib/dump/snapshot.rb index f168f20..a9f9245 100644 --- a/lib/dump/snapshot.rb +++ b/lib/dump/snapshot.rb @@ -168,7 +168,7 @@ def clean_tags(tags) end def get_filter_tags(tags) - groups = Hash.new{ |hash, key| hash[key] = SortedSet.new } + groups = Hash.new{ |hash, key| hash[key] = Set.new } tags.to_s.split(',').each do |tag| next unless (m = tag.strip.match(/^(-|\+)?(.*)$/))