Skip to content

Commit

Permalink
linkedlist: remove public module
Browse files Browse the repository at this point in the history
PR-URL: #12113
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Evan Lucas <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
  • Loading branch information
mscdex authored and jasnell committed Apr 4, 2017
1 parent e1161a3 commit 84a2339
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ rules:
no-mixed-requires: 2
no-new-require: 2
no-path-concat: 2
no-restricted-modules: [2, sys, _linklist]
no-restricted-modules: [2, sys]
no-restricted-properties:
- 2
- object: assert
Expand Down
27 changes: 0 additions & 27 deletions lib/_linklist.js

This file was deleted.

1 change: 0 additions & 1 deletion node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
'lib/_http_outgoing.js',
'lib/_http_server.js',
'lib/https.js',
'lib/_linklist.js',
'lib/module.js',
'lib/net.js',
'lib/os.js',
Expand Down
5 changes: 1 addition & 4 deletions test/parallel/test-timers-linked-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,7 @@

require('../common');
const assert = require('assert');
const L = require('_linklist'); // eslint-disable-line no-restricted-modules
const internalL = require('internal/linkedlist');

assert.strictEqual(L, internalL);
const L = require('internal/linkedlist');

const list = { name: 'list' };
const A = { name: 'A' };
Expand Down

0 comments on commit 84a2339

Please sign in to comment.