Merge pull request #353 from mhintz/remove-unused-imports

Remove unused imports
This commit is contained in:
Brendan Zabarauskas 2016-05-11 22:11:49 +10:00
commit aaabe6e478
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::*;