diff options
| author | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-01-26 11:24:54 +0000 |
|---|---|---|
| committer | seki <seki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-01-26 11:24:54 +0000 |
| commit | c10e60106de2d85af4e36af39a89bb40e9586dab (patch) | |
| tree | bc397e30545c9095f290034c7b548ee2feba5147 | |
| parent | 09141c06e13107e4c450b30929f367881c90cd1b (diff) | |
* lib/drb/eq.rb: fix circular requrie in drb.
reported by akr. see [ruby-dev:40156] [ruby-core:27661]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@26424 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/drb/eq.rb | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,8 @@ +Tue Jan 26 20:24:04 2010 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> + + * lib/drb/eq.rb: fix circular requrie in drb. + reported by akr. see [ruby-dev:40156] [ruby-core:27661] + Tue Jan 26 20:13:27 2010 NARUSE, Yui <naruse@ruby-lang.org> * ext/zlib/zlib.c (rb_gzfile_s_wrap): add rdoc. diff --git a/lib/drb/eq.rb b/lib/drb/eq.rb index e24512d6a7..6328c81202 100644 --- a/lib/drb/eq.rb +++ b/lib/drb/eq.rb @@ -1,5 +1,3 @@ -require 'drb/drb' - module DRb class DRbObject def ==(other) |
