Cleaned references and imports

This commit is contained in:
Matthew Burke
2023-07-27 19:15:49 -04:00
parent 09d86b86c2
commit 19153c9d02
23 changed files with 48 additions and 157 deletions
@@ -1,10 +1,6 @@
using System;
using MySqlConnector;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Data.SqlClient;
using MySqlConnector;
namespace PWAPPv2.Source.Database
{
@@ -28,7 +24,7 @@ namespace PWAPPv2.Source.Database
{
Connection.Open();
}
catch(Exception)
catch (Exception)
{
throw new DatabaseConnectionException();
}
@@ -99,7 +95,7 @@ namespace PWAPPv2.Source.Database
{
}
class DatabaseConnectionException : Exception
{ }