diff options
author | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-21 14:11:08 +0000 |
---|---|---|
committer | hsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-10-21 14:11:08 +0000 |
commit | 52a275ee79a51cc6ae05a745d38a36c96f95adc2 (patch) | |
tree | 6079f2fb86205c96e8141668d20bfd694eedeeea /lib/irb.rb | |
parent | fe7f05183243fd4c708d4a44e25c954334fc34f7 (diff) |
Removed obsoleted safe level checks on irb.
https://github.com/ruby/ruby/pull/1713
Patch by @y-yagi [fix GH-1713]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60278 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb.rb')
-rw-r--r-- | lib/irb.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/irb.rb b/lib/irb.rb index 3c7de05289..3c549d2c6e 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -531,9 +531,6 @@ module IRB end print "Maybe IRB bug!\n" if irb_bug end - if $SAFE > 2 - abort "Error: irb does not work for $SAFE level higher than 2" - end end end end |