From ee089db748cad7d11c05403e042559ca7ffef8b8 Mon Sep 17 00:00:00 2001 From: Anthony Bullard Date: Sat, 4 Jan 2025 06:36:28 -0600 Subject: [PATCH] Remove superfluous println --- crates/compiler/fmt/src/def.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/compiler/fmt/src/def.rs b/crates/compiler/fmt/src/def.rs index 00886a5c25..6fe4d60d63 100644 --- a/crates/compiler/fmt/src/def.rs +++ b/crates/compiler/fmt/src/def.rs @@ -431,8 +431,6 @@ impl<'a> Formattable for TypeDef<'a> { fn format_with_options(&self, buf: &mut Buf, _parens: Parens, newlines: Newlines, indent: u16) { use roc_parse::ast::TypeDef::*; - println!("WTF???"); - match self { Alias { header, ann } => { header.format(buf, indent);