mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-22 10:05:06 +03:00
remove unused imports
This commit is contained in:
@@ -94,7 +94,7 @@
|
||||
use core::cmp::Ordering::{self, Greater, Less};
|
||||
use core::cmp::{self, Ord, PartialEq};
|
||||
use core::iter::{Iterator, IteratorExt};
|
||||
use core::iter::{range, range_step, MultiplicativeIterator};
|
||||
use core::iter::{range_step, MultiplicativeIterator};
|
||||
use core::marker::Sized;
|
||||
use core::mem::size_of;
|
||||
use core::mem;
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
use core::char::CharExt;
|
||||
use core::clone::Clone;
|
||||
use core::iter::AdditiveIterator;
|
||||
use core::iter::{range, Iterator, IteratorExt};
|
||||
use core::iter::{Iterator, IteratorExt};
|
||||
use core::ops::{FullRange, Index};
|
||||
use core::option::Option::{self, Some, None};
|
||||
use core::slice::AsSlice;
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
use char;
|
||||
use char::CharExt;
|
||||
use fmt;
|
||||
use iter::{IteratorExt, range};
|
||||
use iter::IteratorExt;
|
||||
use num::{cast, Float, ToPrimitive};
|
||||
use num::FpCategory as Fp;
|
||||
use ops::FnOnce;
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
use any;
|
||||
use cell::{Cell, RefCell, Ref, RefMut};
|
||||
use char::CharExt;
|
||||
use iter::{Iterator, IteratorExt, range};
|
||||
use iter::{Iterator, IteratorExt};
|
||||
use marker::{Copy, Sized};
|
||||
use mem;
|
||||
use option::Option;
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
use error::Error;
|
||||
use fmt;
|
||||
use iter::ExactSizeIterator;
|
||||
use iter::range;
|
||||
use iter::{Map, Iterator, IteratorExt, DoubleEndedIterator};
|
||||
use marker::Sized;
|
||||
use mem;
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
use old_io::{fs, IoError, IoErrorKind, IoResult};
|
||||
use old_io;
|
||||
use iter::{IteratorExt, range};
|
||||
use iter::IteratorExt;
|
||||
use ops::Drop;
|
||||
use option::Option;
|
||||
use option::Option::{None, Some};
|
||||
|
||||
@@ -20,7 +20,6 @@
|
||||
use std::cell::{RefCell, Cell};
|
||||
use std::fmt;
|
||||
use std::old_io;
|
||||
use std::iter::range;
|
||||
use std::string::String;
|
||||
use term::WriterWrapper;
|
||||
use term;
|
||||
|
||||
Reference in New Issue
Block a user