Skip to content

Commit

Permalink
Remove accidental print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagoarrais committed Jun 11, 2019
1 parent 82a0264 commit 87ff215
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion clippy_dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ fn gather_from_file(dir_entry: &walkdir::DirEntry) -> impl Iterator<Item = Lint>
let mut content = String::new();
file.read_to_string(&mut content).unwrap();
let mut filename = dir_entry.path().file_stem().unwrap().to_str().unwrap();
println!("{}", filename);
// If the lints are stored in mod.rs, we get the module name from
// the containing directory:
if filename == "mod" {
Expand Down

0 comments on commit 87ff215

Please sign in to comment.