From c59dea8e21c9719bf5dd673765961df22b77bc81 Mon Sep 17 00:00:00 2001 From: Christopher Date: Sun, 5 Mar 2023 15:48:53 +1300 Subject: [PATCH] removed final todo --- 84_Super_Star_Trek/rust/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/84_Super_Star_Trek/rust/src/commands.rs b/84_Super_Star_Trek/rust/src/commands.rs index 38bc3508..d2eefc61 100644 --- a/84_Super_Star_Trek/rust/src/commands.rs +++ b/84_Super_Star_Trek/rust/src/commands.rs @@ -334,7 +334,7 @@ pub fn access_computer(galaxy: &Galaxy, provided: Vec) { 3 => show_starbase_direction_data(galaxy), 4 => direction_dist_calculator(galaxy), 5 => view::galaxy_region_map(), - _ => todo!() // todo implement others + _ => () // unreachable } }