From dc33f6ad6a0eb8cacb3a8999fcea904d935be5e5 Mon Sep 17 00:00:00 2001 From: Adam Whitehurst Date: Sun, 5 Jan 2020 15:28:20 -0800 Subject: [PATCH] Ruin them again (the comments) --- common/src/comp/states/mod.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/common/src/comp/states/mod.rs b/common/src/comp/states/mod.rs index 8e6ff91049..90f0c56834 100644 --- a/common/src/comp/states/mod.rs +++ b/common/src/comp/states/mod.rs @@ -111,7 +111,6 @@ impl ActionState { Idle(opt_state) => opt_state .unwrap_or_else(|| IdleState::new(ecs_data)) .handle(ecs_data), - // // All states should be explicitly handled // Do not use default match: _ => {}, } @@ -132,7 +131,6 @@ impl ActionState { }, Wield(_) => false, Idle(_) => false, - // // All states should be explicitly handled // Do not use default match: _ => {}, } @@ -156,7 +154,6 @@ impl MoveState { Swim(_) => false, Fall(_) => false, Sit(_) => true, - // // All states should be explicitly handled // Do not use default match: _ => {}, } @@ -191,7 +188,6 @@ impl MoveState { Sit(opt_state) => opt_state .unwrap_or_else(|| SitState::new(ecs_data)) .handle(ecs_data), - // // All states should be explicitly handled // Do not use default match: _ => {}, }