modes:pair:ord: Remove useless case

This commit is contained in:
2026-04-03 05:36:52 +01:00
committed by oreodave
parent 2d179f0316
commit 8a2cbf1bc9

View File

@@ -79,7 +79,6 @@ impl Ord for Pair {
match (self.1.cmp(&other.1), self.is_proper(), other.is_proper()) {
(Ordering::Equal, false, true) => Ordering::Less,
(Ordering::Equal, true, false) => Ordering::Greater,
(Ordering::Equal, ..) => Ordering::Equal,
(x, ..) => x,
}
}