Merge pull request #26 from jbcrail/rm-unused-imports

Remove unused imports.
This commit is contained in:
Alex Crichton 2014-11-07 23:30:53 -06:00
commit 62daf0de5f
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;