Remove unused imports

Fixes compile warnings
This commit is contained in:
Mark Hintz 2016-05-11 13:21:56 +02:00
parent 32baeea31f
commit ec3385ceab
3 changed files with 1 additions and 3 deletions

View file

@ -21,7 +21,6 @@ use std::ops::*;
use rand::{Rand, Rng};
use rand::distributions::range::SampleRange;
use num_traits::Float;
use num_traits::cast;
use structure::*;

View file

@ -13,7 +13,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
use num_traits::{Zero, One};
use num_traits::{Zero};
use num_traits::cast;
use structure::Angle;

View file

@ -17,7 +17,6 @@ use std::mem;
use std::ops::*;
use rand::{Rand, Rng};
use num_traits::Float;
use num_traits::cast;
use structure::*;