Skip to content

Commit f8f81c8

Browse files
gurgundayaduh95
authored andcommitted
timers: remove unused parameter from insertGuarded
PR-URL: #57251 Reviewed-By: Juan José Arboleda <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent 097d992 commit f8f81c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/timers.js

+2-2
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)