1
Fork 0

Clean up and added 'Using' statements (Originally for testing)

This commit is contained in:
Jake Howard 2014-07-21 12:42:06 +01:00
parent ef8404f94b
commit 50432ac9f9

View file

@ -1,5 +1,5 @@
using System; using System;
using System.Collections.Generic; using System.Collections;
using System.ComponentModel; using System.ComponentModel;
using System.Data; using System.Data;
using System.Drawing; using System.Drawing;
@ -7,6 +7,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using System.IO;
namespace Saviour_Backup_System namespace Saviour_Backup_System
{ {
@ -15,10 +16,6 @@ namespace Saviour_Backup_System
public mainWindow() public mainWindow()
{ {
InitializeComponent(); InitializeComponent();
}
private void buttonItem3_Click(object sender, EventArgs e)
{
} }
} }