From b753d27ac84527931c3336c8429286fc7cf62a05 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Sun, 25 Nov 2012 22:21:27 +1000 Subject: [PATCH] Remove useless import --- src/dim.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/dim.rs b/src/dim.rs index 0d5b0fa..7cb9f65 100644 --- a/src/dim.rs +++ b/src/dim.rs @@ -1,5 +1,3 @@ -use core::cmp::Eq; - pub trait Dimensional: Index { static pure fn dim() -> uint; // dim and size_of are pretty useless at the moment due to static pure fn size_of() -> uint; // how Rust's static methods are currently implemented