Skip to content

Commit 401b965

Browse files
gurgundayRafaelGSS
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 3a4ed77 commit 401b965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/internal/timers.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,12 +342,12 @@ function unrefActive(item) {
342342
//
343343
// Appends a timer onto the end of an existing timers list, or creates a new
344344
// list if one does not already exist for the specified timeout duration.
345-
function insertGuarded(item, refed, start) {
345+
function insertGuarded(item, refed) {
346346
const msecs = item._idleTimeout;
347347
if (msecs < 0 || msecs === undefined)
348348
return;
349349

350-
insert(item, msecs, start);
350+
insert(item, msecs);
351351

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

0 commit comments

Comments
 (0)