remove leftover dbgs!

This commit is contained in:
John Turner
2025-11-14 22:27:58 +00:00
parent 61292f6646
commit 29af7572a0

View File

@@ -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,