From d11741884f9aad9db5e90aa9dbe5348456648306 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 3 Dec 2016 22:43:42 -0500 Subject: Remove unused import --- src/bin/day01.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/day01.rs b/src/bin/day01.rs index a198e64..26dd306 100644 --- a/src/bin/day01.rs +++ b/src/bin/day01.rs @@ -1,6 +1,6 @@ use std::collections::HashSet; use std::io::{self, Read}; -use std::ops::{Add, Mul}; +use std::ops::Add; #[derive(Clone, Copy, PartialEq, Eq, Hash)] struct Point(i32, i32); -- cgit 1.4.1