From: Rich Trott Date: Wed, 23 Dec 2015 19:34:07 +0000 (-0800) Subject: repl: remove unused function X-Git-Tag: v4.2.5~57 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53dcbb6aa46590ce5a73751598c5fad2d7830087;p=platform%2Fupstream%2Fnodejs.git 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 --- diff --git a/lib/internal/repl.js b/lib/internal/repl.js index 79ad79a..e6b41fb 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;