Skip to content

Commit

Permalink
remove debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnicola committed Nov 8, 2023
1 parent a8cccb0 commit f20999c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rust/notus/src/packages/ebuild.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,10 @@ impl PartialOrd for EBuild {
if self.name != other.name {
return None;
}
println!("AAA");

if self.full_version == other.full_version {
return Some(Ordering::Equal);
}
println!("BBB");

self.full_version.partial_cmp(&other.full_version)
}
Expand Down

0 comments on commit f20999c

Please sign in to comment.