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

* lib/drb/drb.rb: removed unreachable code.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
hsbt 2014-08-08 07:35:19 +00:00
parent 67b5e1084b
commit 47f8840e32
2 changed files with 7 additions and 10 deletions

View file

@ -1,3 +1,7 @@
Fri Aug 8 16:34:22 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/drb/drb.rb: removed unreachable code.
Fri Aug 8 14:33:49 2014 SHIBATA Hiroshi <shibata.hiroshi@gmail.com>
* lib/webrick/httpproxy.rb: remove needless condition

View file

@ -1594,16 +1594,9 @@ module DRb
end
if RUBY_VERSION >= '1.8'
require 'drb/invokemethod'
class InvokeMethod
include InvokeMethod18Mixin
end
else
require 'drb/invokemethod16'
class InvokeMethod
include InvokeMethod16Mixin
end
require 'drb/invokemethod'
class InvokeMethod
include InvokeMethod18Mixin
end
# The main loop performed by a DRbServer's internal thread.