summaryrefslogtreecommitdiff
path: root/lib/drb
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-08 07:35:19 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-08-08 07:35:19 +0000
commit47f8840e32710561544456d41f8b006237ab9581 (patch)
tree142d8186b93156f8a2843ee2ae3c0a48cde06c48 /lib/drb
parent67b5e1084bb079025183559f78b78402666dbfcd (diff)
* lib/drb/drb.rb: removed unreachable code.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/drb')
-rw-r--r--lib/drb/drb.rb13
1 files changed, 3 insertions, 10 deletions
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index ff1d3a53d3..25cf7e9c07 100644
--- a/lib/drb/drb.rb
+++ b/lib/drb/drb.rb
@@ -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.