diff --git a/src/atom/mod.rs b/src/atom/mod.rs index 11ca246..4516410 100644 --- a/src/atom/mod.rs +++ b/src/atom/mod.rs @@ -145,7 +145,7 @@ impl Atom { impl PartialEq for VersionSuffix { fn eq(&self, other: &Self) -> bool { self.kind == other.kind - && match dbg!((&self.number, &other.number)) { + && match (&self.number, &other.number) { (Some(a), Some(b)) => a.0 == b.0, (Some(a), None) if a.get().chars().all(|c| c == '0') => true, (None, Some(b)) if b.get().chars().all(|c| c == '0') => true, @@ -215,7 +215,7 @@ impl Ord for VersionSuffixes { let mut b = other.get().iter(); loop { - match dbg!((a.next(), b.next())) { + match (a.next(), b.next()) { (Some(a), Some(b)) => match a.cmp(b) { Ordering::Less => break Ordering::Less, Ordering::Greater => break Ordering::Greater,