diff --git a/src/Key.zig b/src/Key.zig index 877ddfa..1c19186 100644 --- a/src/Key.zig +++ b/src/Key.zig @@ -57,9 +57,6 @@ pub fn matches(self: Key, cp: u21, mods: Modifiers) bool { // rule 3 if (self.matchShiftedCodepoint(cp, mods)) return true; - // rule 4 - if (self.matchShiftedCodepoint(cp, mods)) return true; - return false; }