Skip to content

Commit

Permalink
remove spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
kamiyaa committed Jan 23, 2025
1 parent 78203a9 commit 451f78d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion rust/main/utils/run-locally/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ pub fn get_matching_lines(file: &File, search_strings: &[&str]) -> HashMap<Strin
let reader = io::BufReader::new(file);
let mut matches = HashMap::new();
let mut lines = reader.lines();

while let Some(Ok(line)) = lines.next() {
search_strings.iter().for_each(|search_string| {
if line.contains(search_string) {
Expand Down

0 comments on commit 451f78d

Please sign in to comment.