1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Merge pull request #1868 from pry/deprecated-method-removal

method: delete deprecated #all_from_common
This commit is contained in:
Kyrylo Silin 2018-11-08 15:13:25 +08:00 committed by GitHub
commit e138cb3d0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,15 +161,6 @@ class Pry
all_from_class(singleton_class_of(obj), include_super)
end
#
# @deprecated
# please use {all_from_obj} instead.
# the `method_type` argument is ignored.
#
def all_from_common(obj, _method_type = nil, include_super = true)
all_from_obj(obj, include_super)
end
# Get every `Class` and `Module`, in order, that will be checked when looking
# for an instance method to call on this object.
# @param [Object] obj