From a6a548c6f6c3f8d7fcadcc241ff1713938c5a593 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Thu, 26 Feb 2026 21:00:46 -0500 Subject: [PATCH] tidy up --- packages/svelte/src/internal/client/reactivity/batch.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/svelte/src/internal/client/reactivity/batch.js b/packages/svelte/src/internal/client/reactivity/batch.js index dd3d7142c3..949e8f7ce1 100644 --- a/packages/svelte/src/internal/client/reactivity/batch.js +++ b/packages/svelte/src/internal/client/reactivity/batch.js @@ -524,14 +524,8 @@ export class Batch { } apply() { - if (!batches.has(this)) { - console.warn('wtf', this.id); - } - if (!async_mode_flag || (!this.is_fork && batches.size === 1)) return; - console.log(this.id, batches.size); - // if there are multiple batches, we are 'time travelling' — // we need to override values with the ones in this batch... batch_values = new Map(this.current); @@ -557,8 +551,6 @@ export class Batch { } } - console.log(batch.id, { coincides }); - if (!coincides) { for (const [source, previous] of batch.previous) { if (!batch_values.has(source)) {