From 65c40d753f7843aba694b076fefc048aa90a48ba Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 23 Dec 2015 11:34:07 -0800 Subject: [PATCH] repl: remove unused function replStart() was defined but never used. The function has been removed. Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Chris Dickinson --- lib/internal/repl.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/internal/repl.js b/lib/internal/repl.js index 79ad79abe87f04..e6b41fbdd89b65 100644 --- a/lib/internal/repl.js +++ b/lib/internal/repl.js @@ -14,12 +14,6 @@ module.exports.createInternalRepl = createRepl; // The debounce is to guard against code pasted into the REPL. const kDebounceHistoryMS = 15; -// XXX(chrisdickinson): hack to make sure that the internal debugger -// uses the original repl. -function replStart() { - return REPL.start.apply(REPL, arguments); -} - function createRepl(env, opts, cb) { if (typeof opts === 'function') { cb = opts;