about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2019-12-11 23:54:07 -0500
committerBen Harris <ben@tilde.team>2019-12-11 23:54:52 -0500
commitc40a820aa87e96ccdca0efe477febcaf939e1f1c (patch)
tree05636de49eaec96c45d0c2927c439eb6161ad549
parentc48d5e99055e82ee3e6ed01730e14ca79f2ec275 (diff)
remove unnecessary usings
-rw-r--r--Day1.cs1
-rw-r--r--Day11.cs2
-rw-r--r--Day2.cs1
-rw-r--r--Day3.cs1
-rw-r--r--Day4.cs3
-rw-r--r--Day5.cs1
-rw-r--r--Day7.cs1
-rw-r--r--Day9.cs2
-rw-r--r--lib/Extensions.cs3
9 files changed, 2 insertions, 13 deletions
diff --git a/Day1.cs b/Day1.cs
index 0cc0176..2b7be62 100644
--- a/Day1.cs
+++ b/Day1.cs
@@ -1,5 +1,4 @@
 using System.Collections.Generic;
-using System.IO;
 using System.Linq;
 
 namespace aoc2019
diff --git a/Day11.cs b/Day11.cs
index 6ec157d..005d32d 100644
--- a/Day11.cs
+++ b/Day11.cs
@@ -2,8 +2,6 @@ using aoc2019.lib;
 using System;
 using System.Collections.Generic;
 using System.Linq;
-using System.Runtime.CompilerServices;
-using System.Text;
 
 namespace aoc2019
 {
diff --git a/Day2.cs b/Day2.cs
index f474c45..7856174 100644
--- a/Day2.cs
+++ b/Day2.cs
@@ -1,5 +1,4 @@
 using System.Collections.Generic;
-using System.IO;
 using System.Linq;
 
 namespace aoc2019
diff --git a/Day3.cs b/Day3.cs
index 442c58a..9049b7a 100644
--- a/Day3.cs
+++ b/Day3.cs
@@ -1,6 +1,5 @@
 using System;
 using System.Collections.Generic;
-using System.IO;
 using System.Linq;
 
 namespace aoc2019
diff --git a/Day4.cs b/Day4.cs
index fad209d..5a453e0 100644
--- a/Day4.cs
+++ b/Day4.cs
@@ -1,5 +1,4 @@
-using System.IO;
-using System.Linq;
+using System.Linq;
 
 namespace aoc2019
 {
diff --git a/Day5.cs b/Day5.cs
index ecfa14e..f08eec1 100644
--- a/Day5.cs
+++ b/Day5.cs
@@ -1,5 +1,4 @@
 using System.Collections.Generic;
-using System.IO;
 using System.Linq;
 
 namespace aoc2019
diff --git a/Day7.cs b/Day7.cs
index af66d03..a152ce3 100644
--- a/Day7.cs
+++ b/Day7.cs
@@ -1,5 +1,4 @@
 using aoc2019.lib;
-using System;
 using System.Collections.Generic;
 using System.Linq;
 
diff --git a/Day9.cs b/Day9.cs
index 8f21e3d..56988f6 100644
--- a/Day9.cs
+++ b/Day9.cs
@@ -1,6 +1,4 @@
 using aoc2019.lib;
-using System;
-using System.Collections.Generic;
 using System.Linq;
 
 namespace aoc2019
diff --git a/lib/Extensions.cs b/lib/Extensions.cs
index 3c81f17..312af5d 100644
--- a/lib/Extensions.cs
+++ b/lib/Extensions.cs
@@ -1,5 +1,4 @@
-using System;
-using System.Collections.Generic;
+using System.Collections.Generic;
 using System.Linq;
 
 namespace aoc2019.lib