diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-08-22 20:16:36 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-08-24 22:13:13 +0000 |
| commit | a9a2979dbaddc540673cf66da52e8eb45e66b055 (patch) | |
| tree | 292617d2089a12d711cec5b4e06bf95a4cf9088b /src/libcollections/binary_heap.rs | |
| parent | 9a2c8783d91624261317316f996d8d2d09b7b6a4 (diff) | |
| download | rust-a9a2979dbaddc540673cf66da52e8eb45e66b055.tar.gz rust-a9a2979dbaddc540673cf66da52e8eb45e66b055.zip | |
Remove needless imports in `libcollections`.
Diffstat (limited to 'src/libcollections/binary_heap.rs')
| -rw-r--r-- | src/libcollections/binary_heap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/binary_heap.rs b/src/libcollections/binary_heap.rs index c062ae62b00..5ece27372e1 100644 --- a/src/libcollections/binary_heap.rs +++ b/src/libcollections/binary_heap.rs @@ -151,7 +151,7 @@ #![allow(missing_docs)] #![stable(feature = "rust1", since = "1.0.0")] -use core::ops::{Drop, Deref, DerefMut}; +use core::ops::{Deref, DerefMut}; use core::iter::{FromIterator, FusedIterator}; use core::mem::swap; use core::mem::size_of; |
