summaryrefslogtreecommitdiff
path: root/lib/soap/rpc/rpc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/soap/rpc/rpc.rb')
-rw-r--r--lib/soap/rpc/rpc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/soap/rpc/rpc.rb b/lib/soap/rpc/rpc.rb
index 5f77b4d2e9..a48b525dbb 100644
--- a/lib/soap/rpc/rpc.rb
+++ b/lib/soap/rpc/rpc.rb
@@ -16,7 +16,7 @@ module RPC
if obj.is_a?(Module)
obj.methods - Module.methods
else
- obj.methods - Kernel.instance_methods(true)
+ obj.methods - Object.instance_methods(true)
end
end
end