From 430dd251364efff00e41e2430f212947eb4ff689 Mon Sep 17 00:00:00 2001 From: Marco Ieni <11428655+marcoieni@users.noreply.github.com> Date: Sat, 13 Sep 2025 10:57:01 -0700 Subject: [PATCH] Remove debug print Remove debug print statement for URL compatibility. --- src/types/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/types/mod.rs b/src/types/mod.rs index adbe307..a5e8750 100644 --- a/src/types/mod.rs +++ b/src/types/mod.rs @@ -325,7 +325,6 @@ impl<'url> GitUrl<'url> { #[cfg(feature = "url")] { // Since we don't fully implement any spec, we'll rely on the url crate - println!("{:#?}", self.url_compat_display()); let _u = url::Url::parse(&self.url_compat_display())?; }