diff --git a/App.xaml.cs b/App.xaml.cs index f3dcbf3..8b6aac6 100644 --- a/App.xaml.cs +++ b/App.xaml.cs @@ -1,10 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Configuration; -using System.Data; -using System.Linq; -using System.Threading.Tasks; -using System.Windows; +using System.Windows; namespace CryptoCalc { diff --git a/DBInteraction.cs b/DBInteraction.cs index f70c1e0..cd50c22 100644 --- a/DBInteraction.cs +++ b/DBInteraction.cs @@ -5,7 +5,6 @@ using System.Data; using System.Data.SQLite; using System.Diagnostics; using System.Linq; -using static CryptoCalc.DBClasses; namespace CryptoCalc { diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index bf7b6b5..4bfc358 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -1,8 +1,7 @@ using System; using System.Collections.Generic; -using System.Windows; using System.Diagnostics; -using static CryptoCalc.DBClasses; +using System.Windows; namespace CryptoCalc { @@ -10,7 +9,7 @@ namespace CryptoCalc { private readonly Random rand = new(); private List transactions = new(); - + public MainWindow() { InitializeComponent(); @@ -67,7 +66,7 @@ namespace CryptoCalc { Wallet w = new(); w.SaveUnixTimeNow(); - w.UnixTimeCreated = w.GetUnixTime(new DateTime(2018,10,1)); + w.UnixTimeCreated = w.GetUnixTime(new DateTime(2018, 10, 1)); w.Platform = "Ledger"; w.Name = "TestWallet"; w.Currency = "SOL";