summaryrefslogtreecommitdiff
path: root/lib/drb/invokemethod.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-23 14:39:01 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-23 14:39:01 +0000
commita1dc1d6a8cf4d1d4776a13dbb8574a8c28e1a5bb (patch)
treece3250d9208ffdd50ca44f8649dfb664c4e59525 /lib/drb/invokemethod.rb
parentf6ef26c41103952641cca36fe51eba1e804fdce7 (diff)
* ruby.h, lib/drb/drb.rb, lib/drb/invokemethod.rb: remove Values class.
[ruby-dev:28805] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10372 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/drb/invokemethod.rb')
-rw-r--r--lib/drb/invokemethod.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drb/invokemethod.rb b/lib/drb/invokemethod.rb
index a59b41d0a0..2bcd12f5f5 100644
--- a/lib/drb/invokemethod.rb
+++ b/lib/drb/invokemethod.rb
@@ -4,7 +4,7 @@ module DRb
class DRbServer
module InvokeMethod18Mixin
def block_yield(x)
- if x.size == 1 && x[0].class == Values
+ if x.size == 1 && x[0].class == Array
x[0] = DRbArray.new(x[0])
end
block_value = @block.call(*x)