From f36fa7d6c1ee2e18016f388263bc894e81dde3f5 Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Fri, 24 Oct 2025 17:35:23 +0200 Subject: [PATCH] [ty] Fix missing newline before first diagnostic (#21058) --- crates/ty/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ty/src/lib.rs b/crates/ty/src/lib.rs index e1bb4e1f10..66a85870b2 100644 --- a/crates/ty/src/lib.rs +++ b/crates/ty/src/lib.rs @@ -280,7 +280,7 @@ impl MainLoop { match salsa::Cancelled::catch(|| { db.check_with_reporter(&mut reporter); - reporter.bar.finish(); + reporter.bar.finish_and_clear(); reporter.collector.into_sorted(&db) }) { Ok(result) => {