Remove unused imports.

This commit is contained in:
Joseph Crail 2014-11-07 21:21:23 -05:00
parent 1690a26544
commit e09b009edb
2 changed files with 2 additions and 2 deletions

View File

@ -1421,7 +1421,7 @@ impl BigInt {
#[cfg(test)]
mod biguint_tests {
use Integer;
use super::{BigDigit, BigUint, ToBigUint, to_str_radix, to_str_radix_signed};
use super::{BigDigit, BigUint, ToBigUint, to_str_radix};
use super::{Plus, BigInt, RandBigInt, ToBigInt};
use std::cmp::{Less, Equal, Greater};

View File

@ -386,7 +386,7 @@ impl<T: FromStrRadix + Clone + Integer + PartialOrd>
mod test {
use super::{Ratio, Rational, BigRational};
use std::num::{Zero, One, FromStrRadix, FromPrimitive};
use std::num::{Zero, One, FromPrimitive};
use std::from_str::FromStr;
use std::hash::hash;
use std::num;