Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f8f81c8

Browse filesBrowse files
gurgundayaduh95
authored andcommitted
timers: remove unused parameter from insertGuarded
PR-URL: #57251 Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 097d992 commit f8f81c8
Copy full SHA for f8f81c8

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Open diff view settings
Collapse file

‎lib/internal/timers.js‎

Copy file name to clipboardExpand all lines: lib/internal/timers.js
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,12 +362,12 @@ function unrefActive(item) {
362362
//
363363
// Appends a timer onto the end of an existing timers list, or creates a new
364364
// list if one does not already exist for the specified timeout duration.
365-
function insertGuarded(item, refed, start) {
365+
function insertGuarded(item, refed) {
366366
const msecs = item._idleTimeout;
367367
if (msecs < 0 || msecs === undefined)
368368
return;
369369

370-
insert(item, msecs, start);
370+
insert(item, msecs);
371371

372372
const isDestroyed = item._destroyed;
373373
if (isDestroyed || !item[async_id_symbol]) {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.