diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-17 00:59:02 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-07-17 00:59:02 +0000 |
commit | 3e5c21f7cb1e8766da7e02ddb2e081b1796f9c3d (patch) | |
tree | 18b76fe7f91533f631a791d1e601b7ac8c32a73f | |
parent | 4fd244358016913ccb4e2e6840ea8dc3459c4fb7 (diff) | |
download | ruby-3e5c21f7cb1e8766da7e02ddb2e081b1796f9c3d.tar.gz |
remove unnecessary enumerator requires
* lib/rinda/tuplespace.rb: remove enumerator require
* test/pathname/test_pathname.rb: ditto
Related to https://bugs.ruby-lang.org/issues/10902
but not a complete fix.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/rinda/tuplespace.rb | 1 | ||||
-rw-r--r-- | test/pathname/test_pathname.rb | 1 |
3 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Fri Jul 17 09:58:32 2015 Eric Wong <e@80x24.org> + + * lib/rinda/tuplespace.rb: remove enumerator require + * test/pathname/test_pathname.rb: ditto + Fri Jul 17 05:33:58 2015 Eric Wong <e@80x24.org> * iseq.c (rb_iseq_compile_with_option): reuse result of previous diff --git a/lib/rinda/tuplespace.rb b/lib/rinda/tuplespace.rb index 11532fd161..14cae9ebed 100644 --- a/lib/rinda/tuplespace.rb +++ b/lib/rinda/tuplespace.rb @@ -2,7 +2,6 @@ require 'monitor' require 'thread' require 'drb/drb' require 'rinda/rinda' -require 'enumerator' require 'forwardable' module Rinda diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index b012633a8c..94f0e3662f 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -3,7 +3,6 @@ require 'pathname' require 'fileutils' require 'tmpdir' -require 'enumerator' class TestPathname < Test::Unit::TestCase |