From 195aed145182d1731fd7dbbd0c267ad20f89f2b4 Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Sun, 5 Dec 2021 13:33:58 +0700 Subject: [PATCH] Delete unsightly blank line There shouldn't really be a blank line between the opening brace of a function and its first line of code. Let's get rid of it. --- src/runtime/internal/scheduler.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/internal/scheduler.ts b/src/runtime/internal/scheduler.ts index 8a02629429..6496500ccd 100644 --- a/src/runtime/internal/scheduler.ts +++ b/src/runtime/internal/scheduler.ts @@ -34,7 +34,6 @@ export function add_flush_callback(fn) { const seen_callbacks = new Set(); let flushidx = 0; // Do *not* move this inside the flush() function export function flush() { - const saved_component = current_component; do {