Skip to content

Commit c91e69b

Browse files
authored
chore: remove some unnecessary code (#16160)
1 parent 5466086 commit c91e69b

File tree

1 file changed

+0
-9
lines changed
  • packages/svelte/src/internal/client/reactivity

1 file changed

+0
-9
lines changed

packages/svelte/src/internal/client/reactivity/effects.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -599,15 +599,6 @@ function resume_children(effect, local) {
599599
if ((effect.f & INERT) === 0) return;
600600
effect.f ^= INERT;
601601

602-
// If a dependency of this effect changed while it was paused,
603-
// schedule the effect to update. we don't use `check_dirtiness`
604-
// here because we don't want to eagerly recompute a derived like
605-
// `{#if foo}{foo.bar()}{/if}` if `foo` is now `undefined
606-
if ((effect.f & CLEAN) !== 0) {
607-
set_signal_status(effect, DIRTY);
608-
schedule_effect(effect);
609-
}
610-
611602
var child = effect.first;
612603

613604
while (child !== null) {

0 commit comments

Comments
 (0)