summaryrefslogtreecommitdiff
path: root/lib/pry/helpers/platform.rb
diff options
context:
space:
mode:
authorAndré Luis Leal Cardoso Junior <andrehjr@gmail.com>2023-01-01 16:20:36 -0300
committerGitHub <noreply@github.com>2023-01-01 16:20:36 -0300
commit468cf20986ce5072dbad6500ec20554cb420e66d (patch)
treeb617a33b14ab59929a3611c4dbd38ebcf031cab5 /lib/pry/helpers/platform.rb
parentee81361936cb9b2241ef5947ec4a269e1326a5fe (diff)
parentcdc2b9e6a628edb8471c0a8aff7f569cfd52481b (diff)
downloadpry-468cf20986ce5072dbad6500ec20554cb420e66d.tar.gz
Merge pull request #2257 from dduugg/rm-mri-19-cruft
Clean up MRI 1.9 code
Diffstat (limited to 'lib/pry/helpers/platform.rb')
-rw-r--r--lib/pry/helpers/platform.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/pry/helpers/platform.rb b/lib/pry/helpers/platform.rb
index 3af4d3f7..632e71d4 100644
--- a/lib/pry/helpers/platform.rb
+++ b/lib/pry/helpers/platform.rb
@@ -47,11 +47,6 @@ class Pry
end
# @return [Boolean]
- def self.mri_19?
- mri? && RUBY_VERSION.start_with?('1.9')
- end
-
- # @return [Boolean]
def self.mri_2?
mri? && RUBY_VERSION.start_with?('2')
end