summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-11-14 22:27:58 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-11-14 22:27:58 +0000
commit29af7572a07f59446d410a91df8e3ce601cc1284 (patch)
tree139076fb5987db6de71e7ce948c8ef8ee77a6f71 /src
parent61292f664608def91a03417893556ebd95424849 (diff)
downloadgentoo-utils-29af7572a07f59446d410a91df8e3ce601cc1284.tar.gz
remove leftover dbgs!
Diffstat (limited to 'src')
-rw-r--r--src/atom/mod.rs4
1 files changed, 2 insertions, 2 deletions
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,