aboutsummaryrefslogtreecommitdiffstats
path: root/lib/drb
diff options
context:
space:
mode:
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.