summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2018-11-08 15:13:25 +0800
committerGitHub <noreply@github.com>2018-11-08 15:13:25 +0800
commite138cb3d0a21848f959ce18e9e585f74c4c25abb (patch)
treef7561fe9ba3c843a3a5dbad4dea581d4c2f1ddf5
parent9b81716ca243d5dcded62df24208e9d7089461cd (diff)
parent99f2b5df8be87be916dfe01567bad7c08b46b754 (diff)
downloadpry-e138cb3d0a21848f959ce18e9e585f74c4c25abb.tar.gz
Merge pull request #1868 from pry/deprecated-method-removal
method: delete deprecated #all_from_common
-rw-r--r--lib/pry/method.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/pry/method.rb b/lib/pry/method.rb
index 83206074..b0be464a 100644
--- a/lib/pry/method.rb
+++ b/lib/pry/method.rb
@@ -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