summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/lib/drb/eq.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/lib/drb/eq.rb')
-rw-r--r--ruby_1_8_6/lib/drb/eq.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/ruby_1_8_6/lib/drb/eq.rb b/ruby_1_8_6/lib/drb/eq.rb
deleted file mode 100644
index e24512d6a7..0000000000
--- a/ruby_1_8_6/lib/drb/eq.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-require 'drb/drb'
-
-module DRb
- class DRbObject
- def ==(other)
- return false unless DRbObject === other
- (@ref == other.__drbref) && (@uri == other.__drburi)
- end
-
- def hash
- [@uri, @ref].hash
- end
-
- alias eql? ==
- end
-end