Thomas 1 year ago
parent
commit
8d895325ff
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/variants.rs

+ 1 - 2
src/variants.rs

@@ -963,7 +963,6 @@ impl Variants {
             .par_iter()
             .flat_map(|v| {
                 if v.is_from_category(and_categories) {
-                    info!("j");
                     vec![v]
                 } else {
                     vec![]
@@ -1274,7 +1273,7 @@ impl Variant {
                             (None, None) => vec_bools.push(true),
                             (None, Some(to)) => vec_bools.push(self.position <= *to),
                             (Some(from), None) => vec_bools.push(self.position >= *from),
-                            (Some(to), Some(from)) => {
+                            (Some(from), Some(to)) => {
                                 vec_bools.push(self.position >= *from && self.position <= *to)
                             }
                         }