From f71a0cddb87796bb1b45166322a8ed76195354e1 Mon Sep 17 00:00:00 2001 From: Mikayla Date: Wed, 10 Jan 2024 12:13:12 -0800 Subject: [PATCH] Remove last todos --- crates/gpui/src/action.rs | 1 - crates/theme/src/styles/players.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/gpui/src/action.rs b/crates/gpui/src/action.rs index b9cdd4a8bce81ebb4c26178b40a665720985343e..ef02316f83ea9dfa57c68106f6b5706b755e3cd6 100644 --- a/crates/gpui/src/action.rs +++ b/crates/gpui/src/action.rs @@ -128,7 +128,6 @@ impl ActionRegistry { } fn insert_action(&mut self, action: ActionData) { - //todo!(remove) let name: SharedString = action.name.into(); self.builders_by_name.insert(name.clone(), action.build); self.names_by_type_id.insert(action.type_id, name.clone()); diff --git a/crates/theme/src/styles/players.rs b/crates/theme/src/styles/players.rs index b2b797db08b270513b77809437184f9b782af77d..508b091b8b69c5e3ffb995e87862bffe0cbf5ae5 100644 --- a/crates/theme/src/styles/players.rs +++ b/crates/theme/src/styles/players.rs @@ -22,7 +22,7 @@ pub struct PlayerColors(pub Vec); impl Default for PlayerColors { /// Don't use this! /// We have to have a default to be `[refineable::Refinable]`. - /// todo!("Find a way to not need this for Refinable") + /// TODO "Find a way to not need this for Refinable" fn default() -> Self { Self::dark() }