1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
normal 2015-07-17 00:59:02 +00:00
parent 4fd2443580
commit 3e5c21f7cb
3 changed files with 5 additions and 2 deletions

View file

@ -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

View file

@ -2,7 +2,6 @@ require 'monitor'
require 'thread'
require 'drb/drb'
require 'rinda/rinda'
require 'enumerator'
require 'forwardable'
module Rinda

View file

@ -3,7 +3,6 @@ require 'pathname'
require 'fileutils'
require 'tmpdir'
require 'enumerator'
class TestPathname < Test::Unit::TestCase