Fix warning

Antonio Scandurra created

Change summary

crates/theme2/src/colors.rs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Detailed changes

crates/theme2/src/colors.rs 🔗

@@ -23,11 +23,12 @@ pub struct PlayerColors(pub Vec<PlayerColor>);
 
 impl PlayerColors {
     pub fn local(&self) -> PlayerColor {
+        // todo!("use a valid color");
         *self.0.first().unwrap()
     }
 
     pub fn absent(&self) -> PlayerColor {
-        todo!("use a valid color");
+        // todo!("use a valid color");
         *self.0.last().unwrap()
     }