about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorLuqman Aden <laden@csclub.uwaterloo.ca>2014-10-15 03:09:29 -0400
committerLuqman Aden <laden@csclub.uwaterloo.ca>2014-10-16 11:15:35 -0400
commitc5a8bad1ffaeee78aaa3cff6ddd3e8c93ca9b989 (patch)
tree7390eccc137c4b5da26232388190120b0326dc2c /src/liballoc
parent3bab3dc574694b92ca5156ab35d486aeae0bee33 (diff)
downloadrust-c5a8bad1ffaeee78aaa3cff6ddd3e8c93ca9b989.tar.gz
rust-c5a8bad1ffaeee78aaa3cff6ddd3e8c93ca9b989.zip
liballoc: Remove all uses of {:?}.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/arc.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/liballoc/arc.rs b/src/liballoc/arc.rs
index a2483f23534..c447cb46c53 100644
--- a/src/liballoc/arc.rs
+++ b/src/liballoc/arc.rs
@@ -317,8 +317,6 @@ mod tests {
 
         assert_eq!((*arc_v)[2], 3);
         assert_eq!((*arc_v)[4], 5);
-
-        info!("{:?}", arc_v);
     }
 
     #[test]