]> git.lizzy.rs Git - rust.git/commitdiff
rollup merge of #20976: jbcrail/rm-unused-import
authorAlex Crichton <alex@alexcrichton.com>
Thu, 15 Jan 2015 22:11:29 +0000 (14:11 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 15 Jan 2015 22:11:29 +0000 (14:11 -0800)
The BorrowFrom trait was unused by the tests.

src/libcollections/btree/map.rs

index 3e1533dd35f598aad43903e14b74774627c0af14..6c3767b011158403bed037a173487c8a129a97b7 100644 (file)
@@ -1422,7 +1422,6 @@ pub fn entry<'a>(&'a mut self, mut key: K) -> Entry<'a, K, V> {
 #[cfg(test)]
 mod test {
     use prelude::*;
-    use std::borrow::BorrowFrom;
 
     use super::{BTreeMap, Occupied, Vacant};