From 342a00b89e4ee37a0937fb3c1887eac84ba3acf2 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 26 Sep 2023 10:49:55 -0400 Subject: [PATCH] Remove `dbg!` from `styleable_helpers!` (#3035) This PR removes a leftover `dbg!` from `styleable_helpers!`. We already removed this in the `gpui2-ui` branch, but getting this on `main` since @KCaverly pointed it out. Release Notes: - N/A --- crates/gpui2_macros/src/styleable_helpers.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/gpui2_macros/src/styleable_helpers.rs b/crates/gpui2_macros/src/styleable_helpers.rs index 238e64ed14f7778ce5f0c1ffa1544c0c5ea26b41..7283870858cfdd54b5f55eda644e0f2aff02c8b5 100644 --- a/crates/gpui2_macros/src/styleable_helpers.rs +++ b/crates/gpui2_macros/src/styleable_helpers.rs @@ -135,10 +135,6 @@ fn generate_predefined_setter( } }; - if negate { - dbg!(method.to_string()); - } - method }