Remove last todos

Mikayla created

Change summary

crates/gpui/src/action.rs          | 1 -
crates/theme/src/styles/players.rs | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)

Detailed changes

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());

crates/theme/src/styles/players.rs 🔗

@@ -22,7 +22,7 @@ pub struct PlayerColors(pub Vec<PlayerColor>);
 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()
     }