summaryrefslogtreecommitdiff
path: root/lib/drb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-10 21:07:41 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-09-11 10:52:52 +0900
commitd55c914f0fe951b6f742b1b7247011dd681350a1 (patch)
tree4e3c3403c852bfd096748f07d50bc92e90db688c /lib/drb
parente691e671ca91d125edb636669f628d51c04aa1b2 (diff)
Removed DRb.default_safe_level and DRb#safe_level
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3531
Diffstat (limited to 'lib/drb')
-rw-r--r--lib/drb/drb.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index 4d3ea364f1..3e23213911 100644
--- a/lib/drb/drb.rb
+++ b/lib/drb/drb.rb
@@ -1382,10 +1382,6 @@ module DRb
@@idconv = idconv
end
- def self.default_safe_level(level) # :nodoc:
- # Remove in Ruby 3.0
- end
-
# Set the default value of the :verbose option.
#
# See #new(). The initial default value is false.
@@ -1495,11 +1491,6 @@ module DRb
# The configuration of this DRbServer
attr_reader :config
- def safe_level # :nodoc:
- # Remove in Ruby 3.0
- 0
- end
-
# Set whether to operate in verbose mode.
#
# In verbose mode, failed calls are logged to stdout.