File tree Expand file tree Collapse file tree 4 files changed +0
-32
lines changed
Expand file tree Collapse file tree 4 files changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -1751,11 +1751,6 @@ module Kernel : BasicObject
17511751 def self?.sleep : (?nil ) -> bot
17521752 | (Time::_Timeout duration) -> Integer
17531753
1754- %a{deprecated}
1755- interface _Divmod
1756- def divmod : (Numeric) -> [ Numeric, Numeric ]
1757- end
1758-
17591754 # <!--
17601755 # rdoc-file=io.c
17611756 # - syscall(integer_callno, *arguments) -> integer
Original file line number Diff line number Diff line change @@ -1839,8 +1839,4 @@ class Module < Object
18391839 #
18401840 def attr : %a{deprecated} (interned, bool ) -> Array[Symbol]
18411841 | (*interned arg0) -> Array[Symbol]
1842-
1843- # A previous incarnation of `interned` for backward-compatibility (see #1499)
1844- %a{deprecated: Use `interned`}
1845- type id = interned
18461842end
Original file line number Diff line number Diff line change 106106class Object < BasicObject
107107 include Kernel
108108end
109-
110- # A previous incarnation of `interned` for backward-compatibility (see #1499)
111- %a{deprecated: Use `interned` instead}
112- type Object::name = interned
Original file line number Diff line number Diff line change @@ -5530,22 +5530,3 @@ class String
55305530 #
55315531 def valid_encoding? : () -> bool
55325532end
5533-
5534- %a{deprecated}
5535- interface _ArefFromStringToString
5536- def [] : (String) -> String
5537- end
5538-
5539- %a{deprecated}
5540- type String::encode_fallback = Hash[String, String] | Proc | Method | String::_ArefFromStringToString
5541-
5542- # Don't use this interface directly
5543- #
5544- # This is a copy of `::_ArefFromStringToString` but without deprecated attribute.
5545- # This is a workaround to avoid deprecation warnings in `String::encode_fallback` type.
5546- #
5547- # This type will be deprecated soon once `::_ArefFromStringToString` and `String::encode_fallback` are removed.
5548- #
5549- interface String::_ArefFromStringToString
5550- def [] : (String) -> String
5551- end
You can’t perform that action at this time.
0 commit comments