diff options
Diffstat (limited to 'lib/irb/command.rb')
-rw-r--r-- | lib/irb/command.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/irb/command.rb b/lib/irb/command.rb index 19fde56356..f4dd3b2b48 100644 --- a/lib/irb/command.rb +++ b/lib/irb/command.rb @@ -18,12 +18,6 @@ module IRB # :nodoc: def register(name, command_class) @commands[name] = [command_class, []] end - - # This API is for IRB's internal use only and may change at any time. - # Please do NOT use it. - def _register_with_aliases(name, command_class, *aliases) - @commands[name] = [command_class, aliases] - end end end end |