Skip to content

Commit

Permalink
apparently SortedSet in jruby is broken
Browse files Browse the repository at this point in the history
  • Loading branch information
toy committed Nov 11, 2024
1 parent f425fb2 commit fea91f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dump/snapshot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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(/^(-|\+)?(.*)$/))

Expand Down

0 comments on commit fea91f5

Please sign in to comment.