Skip to content

Commit 49ccee4

Browse files
committed
chore: remove comment
1 parent 624bba6 commit 49ccee4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/devtools/src/node/rolldown/events-manager.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ export class RolldownEventsManager {
6464
const _start = start as HookTransformCallStart
6565
const _end = event as HookTransformCallEnd
6666
const no_changes = _start.content === _end.content
67-
// TODO: remove module id check when rolldown fixes the unique call id
68-
if ((no_changes && info.duration < DURATION_THRESHOLD) || _start.module_id !== _end.module_id) {
67+
if (no_changes && info.duration < DURATION_THRESHOLD) {
6968
return
7069
}
7170

0 commit comments

Comments
 (0)