Skip to content

Commit

Permalink
Fix Misplaced Usings (#16)
Browse files Browse the repository at this point in the history
* Fixed misplaced usings
* Removed unused usings
  • Loading branch information
aolszowka authored Oct 19, 2020
1 parent bc998d7 commit 2a109cc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 17 deletions.
15 changes: 5 additions & 10 deletions ManipulativeReplacer/AboutManipulativeReplacerBox.cs
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
11 changes: 4 additions & 7 deletions ManipulativeReplacer/Program.cs
Original file line number Diff line number Diff line change
@@ -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
{
/// <summary>
Expand Down

0 comments on commit 2a109cc

Please sign in to comment.