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