Skip to content

Commit 5a131ce

Browse files
committed
clippy: fix PartialOrd impl on an Ord type
1 parent a3c8133 commit 5a131ce

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/descriptor/tr.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,7 @@ impl<Pk: MiniscriptKey> Eq for Tr<Pk> {}
9191

9292
impl<Pk: MiniscriptKey> PartialOrd for Tr<Pk> {
9393
fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
94-
match self.internal_key.partial_cmp(&other.internal_key) {
95-
Some(cmp::Ordering::Equal) => {}
96-
ord => return ord,
97-
}
98-
self.tree.partial_cmp(&other.tree)
94+
Some(self.cmp(other))
9995
}
10096
}
10197

0 commit comments

Comments
 (0)