From f942a409d74d55c56f12effe91ea63da18cdd3c8 Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 10 May 2017 13:27:10 -0500 Subject: [PATCH] Client.Common - remove a bunch of unused usings --- BizHawk.Client.Common/Global.cs | 2 +- BizHawk.Client.Common/Properties/AssemblyInfo.cs | 1 - BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs | 1 - BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs | 1 - BizHawk.Client.Common/movie/bk2/Bk2Movie.cs | 3 +-- BizHawk.Client.Common/movie/bkm/BkmLogEntryGenerator.cs | 3 +-- BizHawk.Client.Common/movie/import/Fm2Import.cs | 1 - BizHawk.Client.Common/movie/tasproj/TasBranch.cs | 1 - BizHawk.Client.Common/movie/tasproj/TasLagLog.cs | 3 +-- BizHawk.Client.Common/movie/tasproj/TasMovie.IO.cs | 7 ------- BizHawk.Client.Common/movie/tasproj/TasMovie.cs | 2 -- BizHawk.Client.Common/movie/tasproj/TasSession.cs | 2 -- BizHawk.Client.Common/tools/Watch/PreviousType.cs | 7 +------ BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs | 2 -- BizHawk.Client.Common/tools/Watch/WatchSize.cs | 7 +------ 15 files changed, 6 insertions(+), 37 deletions(-) diff --git a/BizHawk.Client.Common/Global.cs b/BizHawk.Client.Common/Global.cs index 718029df6d..d06700502f 100644 --- a/BizHawk.Client.Common/Global.cs +++ b/BizHawk.Client.Common/Global.cs @@ -1,7 +1,7 @@ using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Nintendo.Gameboy; using BizHawk.Emulation.Cores.Sega.MasterSystem; -using BizHawk.Emulation.DiscSystem; + using System.Collections.Generic; namespace BizHawk.Client.Common diff --git a/BizHawk.Client.Common/Properties/AssemblyInfo.cs b/BizHawk.Client.Common/Properties/AssemblyInfo.cs index 6a043c7bc2..0135df64f6 100644 --- a/BizHawk.Client.Common/Properties/AssemblyInfo.cs +++ b/BizHawk.Client.Common/Properties/AssemblyInfo.cs @@ -1,5 +1,4 @@ using System.Reflection; -using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs index e816b8bf20..c08377f218 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.IO.cs @@ -1,6 +1,5 @@ using System; using System.IO; -using System.Linq; using BizHawk.Common; diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs index 02f465ce81..3e91e42774 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.InputLog.cs @@ -1,7 +1,6 @@ using System.Collections.Generic; using System.Globalization; using System.IO; -using System.Linq; using System.Text; namespace BizHawk.Client.Common diff --git a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs index 1a66a2f55a..cb7019c102 100644 --- a/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs +++ b/BizHawk.Client.Common/movie/bk2/Bk2Movie.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using BizHawk.Emulation.Common; diff --git a/BizHawk.Client.Common/movie/bkm/BkmLogEntryGenerator.cs b/BizHawk.Client.Common/movie/bkm/BkmLogEntryGenerator.cs index c6d7e967cc..8fe847b7e3 100644 --- a/BizHawk.Client.Common/movie/bkm/BkmLogEntryGenerator.cs +++ b/BizHawk.Client.Common/movie/bkm/BkmLogEntryGenerator.cs @@ -1,5 +1,4 @@ -using System; -using System.Text; +using System.Text; using BizHawk.Emulation.Common; diff --git a/BizHawk.Client.Common/movie/import/Fm2Import.cs b/BizHawk.Client.Common/movie/import/Fm2Import.cs index b0aca401ae..6fd2b2bae9 100644 --- a/BizHawk.Client.Common/movie/import/Fm2Import.cs +++ b/BizHawk.Client.Common/movie/import/Fm2Import.cs @@ -1,5 +1,4 @@ using System; -using System.IO; using BizHawk.Common; using BizHawk.Common.BufferExtensions; diff --git a/BizHawk.Client.Common/movie/tasproj/TasBranch.cs b/BizHawk.Client.Common/movie/tasproj/TasBranch.cs index 399e9a4e4e..30db681acf 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasBranch.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasBranch.cs @@ -1,5 +1,4 @@ using System; -using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs b/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs index e070b8904b..9582b662d8 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasLagLog.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.IO.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.IO.cs index 2150e621f0..740093a7ee 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.IO.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.IO.cs @@ -1,15 +1,8 @@ using System; -using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; -using BizHawk.Common; -using BizHawk.Common.CollectionExtensions; -using BizHawk.Common.IOExtensions; -using System.Diagnostics; -using System.ComponentModel; - namespace BizHawk.Client.Common { public partial class TasMovie diff --git a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs index d29e1dc288..775eea1a5e 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasMovie.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasMovie.cs @@ -4,9 +4,7 @@ using System.ComponentModel; using System.Globalization; using System.IO; using System.Linq; -using System.Text; -using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Common.IEmulatorExtensions; diff --git a/BizHawk.Client.Common/movie/tasproj/TasSession.cs b/BizHawk.Client.Common/movie/tasproj/TasSession.cs index c7cd5c1830..89ae7957e7 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasSession.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasSession.cs @@ -1,6 +1,4 @@ using System; -using System.Collections.Generic; -using System.Linq; using System.Text; namespace BizHawk.Client.Common diff --git a/BizHawk.Client.Common/tools/Watch/PreviousType.cs b/BizHawk.Client.Common/tools/Watch/PreviousType.cs index 53138f6440..7e9e5c03d6 100644 --- a/BizHawk.Client.Common/tools/Watch/PreviousType.cs +++ b/BizHawk.Client.Common/tools/Watch/PreviousType.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace BizHawk.Client.Common +namespace BizHawk.Client.Common { public enum PreviousType { diff --git a/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs b/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs index 1f80e3944c..f1288af7db 100644 --- a/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs +++ b/BizHawk.Client.Common/tools/Watch/WatchList/WatchList.cs @@ -7,11 +7,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -using BizHawk.Common.NumberExtensions; using BizHawk.Common.StringExtensions; using BizHawk.Emulation.Common; - namespace BizHawk.Client.Common { /// diff --git a/BizHawk.Client.Common/tools/Watch/WatchSize.cs b/BizHawk.Client.Common/tools/Watch/WatchSize.cs index 8803470ad5..92b4e957de 100644 --- a/BizHawk.Client.Common/tools/Watch/WatchSize.cs +++ b/BizHawk.Client.Common/tools/Watch/WatchSize.cs @@ -1,9 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace BizHawk.Client.Common +namespace BizHawk.Client.Common { /// /// This enum specify the size of a