Skip to content

Commit 09b3365

Browse files
committed
Clean up.
1 parent 1d75ef4 commit 09b3365

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

benches/bench_matching.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ fn bench_rule_matching(engine: &Engine, requests: &[TestRequest]) -> (u32, u32)
5454
passes += 1;
5555
}
5656
});
57-
println!("Got {} matches, {} passes", matches, passes);
57+
// println!("Got {} matches, {} passes, {} errors", matches, passes, errors);
5858
(matches, passes)
5959
}
6060

@@ -69,7 +69,7 @@ fn bench_matching_only(engine: &Engine, requests: &[Request]) -> (u32, u32) {
6969
passes += 1;
7070
}
7171
});
72-
println!("Got {} matches, {} passes", matches, passes);
72+
// println!("Got {} matches, {} passes", matches, passes);
7373
(matches, passes)
7474
}
7575

@@ -94,7 +94,7 @@ fn bench_rule_matching_browserlike(blocker: &Engine, requests: &[ParsedRequest])
9494
}
9595
},
9696
);
97-
println!("Got {} matches, {} passes", matches, passes);
97+
// println!("Got {} matches, {} passes", matches, passes);
9898
(matches, passes)
9999
}
100100

src/flatbuffers/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1+
pub(crate) mod containers;
12
pub(crate) mod unsafe_tools;
2-
pub(crate) mod containers;

0 commit comments

Comments
 (0)