summaryrefslogtreecommitdiff
path: root/lib/set.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/set.rb')
-rwxr-xr-xlib/set.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/set.rb b/lib/set.rb
index 43edc7557a..88303424ee 100755
--- a/lib/set.rb
+++ b/lib/set.rb
@@ -531,7 +531,7 @@ class SortedSet < Set
require 'rbtree'
module_eval %{
- def initialize(*args, &block)
+ def initialize(*args)
@hash = RBTree.new
super
end
@@ -544,7 +544,7 @@ class SortedSet < Set
}
rescue LoadError
module_eval %{
- def initialize(*args, &block)
+ def initialize(*args)
@keys = nil
super
end