about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJonathan Behrens <fintelia@gmail.com>2018-09-13 14:58:13 -0400
committerGitHub <noreply@github.com>2018-09-13 14:58:13 -0400
commit1ad0919fa9a9404ba82125c2c654f3d8c25a202b (patch)
tree9842d86560119dac9d210d32ca7efe2d9f7188ea /src/libstd
parent90d36fb5905bbe5004f5b465ea14b53d10dae260 (diff)
downloadrust-1ad0919fa9a9404ba82125c2c654f3d8c25a202b.tar.gz
rust-1ad0919fa9a9404ba82125c2c654f3d8c25a202b.zip
Remove println!() statement from HashMap unit test
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index 804d43f4fc6..eb63d547dd5 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -3537,7 +3537,6 @@ mod test_map {
             match m.entry(x) {
                 Vacant(_) => {}
                 Occupied(e) => {
-                    println!("{}: remove {}", i, x);
                     e.remove();
                 }
             }