summaryrefslogtreecommitdiff
path: root/lib/irb/cmd/finish.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/irb/cmd/finish.rb')
-rw-r--r--lib/irb/cmd/finish.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/irb/cmd/finish.rb b/lib/irb/cmd/finish.rb
deleted file mode 100644
index 29f100feb5..0000000000
--- a/lib/irb/cmd/finish.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# frozen_string_literal: true
-
-require_relative "debug"
-
-module IRB
- # :stopdoc:
-
- module ExtendCommand
- class Finish < DebugCommand
- def execute(*args)
- super(do_cmds: ["finish", *args].join(" "))
- end
- end
- end
-
- # :startdoc:
-end