Remove net_legacy timers_legacy

This commit is contained in:
Ryan Dahl
2011-10-11 13:07:14 -07:00
parent d2b8037ed0
commit be0bb2dc13
13 changed files with 2 additions and 3544 deletions

View File

@@ -458,9 +458,6 @@
// backend.
function translateId(id) {
switch (id) {
case 'net':
return process.features.uv ? 'net_uv' : 'net_legacy';
case 'tty':
return process.features.uv ? 'tty_uv' : 'tty_legacy';
@@ -468,9 +465,6 @@
return process.features.uv ? 'child_process_uv' :
'child_process_legacy';
case 'timers':
return process.features.uv ? 'timers_uv' : 'timers_legacy';
case 'dgram':
return process.features.uv ? 'dgram_uv' : 'dgram_legacy';