From 2a109cc59c92fb9f0b4f56b2be1168ba664c2db3 Mon Sep 17 00:00:00 2001 From: Ace Olszowka Date: Mon, 19 Oct 2020 12:33:33 -0600 Subject: [PATCH] Fix Misplaced Usings (#16) * Fixed misplaced usings * Removed unused usings --- .../AboutManipulativeReplacerBox.cs | 15 +++++---------- ManipulativeReplacer/Program.cs | 11 ++++------- 2 files changed, 9 insertions(+), 17 deletions(-) diff --git a/ManipulativeReplacer/AboutManipulativeReplacerBox.cs b/ManipulativeReplacer/AboutManipulativeReplacerBox.cs index e838d18..dd88339 100644 --- a/ManipulativeReplacer/AboutManipulativeReplacerBox.cs +++ b/ManipulativeReplacer/AboutManipulativeReplacerBox.cs @@ -1,14 +1,9 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Linq; -using System.Reflection; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace ManipulativeReplacer +namespace ManipulativeReplacer { + using System; + using System.Reflection; + using System.Windows.Forms; + partial class AboutManipulativeReplacerBox : Form { public AboutManipulativeReplacerBox() diff --git a/ManipulativeReplacer/Program.cs b/ManipulativeReplacer/Program.cs index 656e23b..77e6f55 100644 --- a/ManipulativeReplacer/Program.cs +++ b/ManipulativeReplacer/Program.cs @@ -1,11 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace ManipulativeReplacer +namespace ManipulativeReplacer { + using System; + using System.Windows.Forms; + static class Program { ///