From ad9096e6b7cb4c72dada2a822b886d8906a3b13f Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Mon, 12 Aug 2024 19:19:18 -0400 Subject: [PATCH] core: layout: remove unreachable statement This statement is the source of a warning because the statement above it is already a catch-all. Remove it. --- src/core/layout.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/layout.rs b/src/core/layout.rs index a854c1a..0a50982 100644 --- a/src/core/layout.rs +++ b/src/core/layout.rs @@ -334,8 +334,6 @@ impl Part { KeyValue(Keysym::Delete, _) => false, KeyValue(_, l) => l != "", - - _ => true, } }