Skip to content

Commit

Permalink
Remove println!() statement from HashMap unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed Sep 13, 2018
1 parent 90d36fb commit 1ad0919
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/libstd/collections/hash/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3537,7 +3537,6 @@ mod test_map {
match m.entry(x) {
Vacant(_) => {}
Occupied(e) => {
println!("{}: remove {}", i, x);
e.remove();
}
}
Expand Down

0 comments on commit 1ad0919

Please sign in to comment.