Skip to content

Commit 53dcbb6

Browse files
TrottMyles Borins
authored and
Myles Borins
committedJan 19, 2016
repl: remove unused function
replStart() was defined but never used. The function has been removed. Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chris Dickinson <christopher.s.dickinson@gmail.com>
1 parent 751fbd8 commit 53dcbb6

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed
 

‎lib/internal/repl.js

-6
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ module.exports.createInternalRepl = createRepl;
1414
// The debounce is to guard against code pasted into the REPL.
1515
const kDebounceHistoryMS = 15;
1616

17-
// XXX(chrisdickinson): hack to make sure that the internal debugger
18-
// uses the original repl.
19-
function replStart() {
20-
return REPL.start.apply(REPL, arguments);
21-
}
22-
2317
function createRepl(env, opts, cb) {
2418
if (typeof opts === 'function') {
2519
cb = opts;

0 commit comments

Comments
 (0)