From 68f9ac97308ba953ed259354b45658cd0a28dff2 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 19 Dec 2020 20:03:37 -0600 Subject: [PATCH] remove unused usings in Emulation.Cores --- src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs | 1 - .../Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs | 1 - .../Consoles/Magnavox/Odyssey2/MemoryMap.cs | 3 +-- .../Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs | 1 - .../Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs | 3 +-- .../Consoles/Nintendo/GBHawk/Mappers/Mapper_HuC3.cs | 1 - .../Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC1.cs | 1 - .../Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC3.cs | 1 - .../Consoles/Nintendo/GBHawk/SerialPort.cs | 1 - .../Consoles/Nintendo/N64/N64.ITraceable.cs | 3 +-- .../Consoles/SNK/LibNeoGeoPort.cs | 2 -- .../Consoles/SNK/NeoGeoPort.cs | 6 +----- .../Consoles/Sega/SMS/SMS.Input.cs | 4 +--- .../Consoles/Sega/Saturn/Saturnus.cs | 12 +----------- .../Consoles/Sega/gpgx64/GPGX.cs | 1 - src/BizHawk.Emulation.Cores/CoreLoadParameters.cs | 1 - src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs | 2 -- .../Waterbox/LibWaterboxCore.cs | 4 +--- .../Waterbox/NymaCore.Settings.ComponentModel.cs | 1 - .../Waterbox/NymaCore.Settings.cs | 2 -- src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs | 1 - src/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs | 1 - src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs | 4 ---- 23 files changed, 7 insertions(+), 50 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs b/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs index 66cd7ab671..c0de2f215a 100644 --- a/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs +++ b/src/BizHawk.Emulation.Cores/CPUs/Intel8048/I8048.cs @@ -1,5 +1,4 @@ using System; -using BizHawk.Emulation.Cores.Consoles.O2Hawk; using BizHawk.Common; using BizHawk.Emulation.Common; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs index 34611b786f..41398d2207 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/A7800Hawk/Mappers/MapperSG.cs @@ -1,6 +1,5 @@ using BizHawk.Common; using BizHawk.Common.NumberExtensions; -using System; namespace BizHawk.Emulation.Cores.Atari.A7800Hawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/MemoryMap.cs b/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/MemoryMap.cs index 36beda46ae..03db04b50c 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/MemoryMap.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Magnavox/Odyssey2/MemoryMap.cs @@ -1,5 +1,4 @@ -using System; -using BizHawk.Common.NumberExtensions; +using BizHawk.Common.NumberExtensions; using BizHawk.Emulation.Common; /* diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs index 16276c5c57..45f60edd2f 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs @@ -2,7 +2,6 @@ using BizHawk.Emulation.Common; using System; using System.Runtime.InteropServices; -using BizHawk.Emulation.Cores.Components.LR35902; namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs index 9d4c7edbf7..b5e1e82704 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IStatable.cs @@ -1,5 +1,4 @@ -using System.IO; -using BizHawk.Common; +using BizHawk.Common; namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_HuC3.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_HuC3.cs index c09bff2fe9..de5d5d2132 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_HuC3.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_HuC3.cs @@ -1,7 +1,6 @@ using BizHawk.Common; using BizHawk.Emulation.Cores.Components.LR35902; -using System; namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC1.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC1.cs index 90cca85f88..d5a2085ee6 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC1.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC1.cs @@ -1,6 +1,5 @@ using BizHawk.Common; using BizHawk.Emulation.Cores.Components.LR35902; -using System; namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC3.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC3.cs index e91b23b339..0080c335b3 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC3.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/Mappers/Mapper_MBC3.cs @@ -1,6 +1,5 @@ using BizHawk.Common; using BizHawk.Emulation.Cores.Components.LR35902; -using System; namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/SerialPort.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/SerialPort.cs index cd65622640..7e05a55491 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/SerialPort.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/SerialPort.cs @@ -1,6 +1,5 @@ using BizHawk.Common.NumberExtensions; using BizHawk.Common; -using System; namespace BizHawk.Emulation.Cores.Nintendo.GBHawk { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs index 6633736105..a6c9b64853 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/N64/N64.ITraceable.cs @@ -1,5 +1,4 @@ -using System; -using System.Text; +using System.Text; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Nintendo.N64.NativeApi; diff --git a/src/BizHawk.Emulation.Cores/Consoles/SNK/LibNeoGeoPort.cs b/src/BizHawk.Emulation.Cores/Consoles/SNK/LibNeoGeoPort.cs index 76ef267de3..621923b220 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/SNK/LibNeoGeoPort.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/SNK/LibNeoGeoPort.cs @@ -1,7 +1,5 @@ using BizHawk.BizInvoke; using BizHawk.Emulation.Cores.Waterbox; -using System; -using System.Runtime.InteropServices; namespace BizHawk.Emulation.Cores.Consoles.SNK { diff --git a/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs b/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs index af34c47155..d2295d811d 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/SNK/NeoGeoPort.cs @@ -1,11 +1,7 @@ -using BizHawk.Common; -using BizHawk.Emulation.Common; +using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Waterbox; using System; using System.Collections.Generic; -using System.ComponentModel; -using System.Linq; -using System.Runtime.InteropServices; namespace BizHawk.Emulation.Cores.Consoles.SNK { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs index 92b58ed355..d20318e2b2 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/SMS.Input.cs @@ -1,6 +1,4 @@ -using System.Collections.Generic; -using System.Linq; - + using BizHawk.Common; using BizHawk.Emulation.Common; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs index 1964f540f9..87e567243b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/Saturn/Saturnus.cs @@ -1,17 +1,7 @@ -using BizHawk.Common; -using BizHawk.Common.BufferExtensions; -using BizHawk.Emulation.Common; +using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Waterbox; -using BizHawk.Emulation.DiscSystem; using System; using System.Collections.Generic; -using System.ComponentModel; -using System.ComponentModel.DataAnnotations; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices; -using System.Security.Cryptography; -using System.Text; namespace BizHawk.Emulation.Cores.Consoles.Sega.Saturn { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs index 22c92248a0..c6d41c1408 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/gpgx64/GPGX.cs @@ -6,7 +6,6 @@ using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Waterbox; using BizHawk.Common; using BizHawk.Emulation.DiscSystem; -using System.Collections.Generic; using System.Linq; namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx diff --git a/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs b/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs index 23b4e86788..b8114fdbe1 100644 --- a/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs +++ b/src/BizHawk.Emulation.Cores/CoreLoadParameters.cs @@ -1,5 +1,4 @@ using System.Collections.Generic; -using System.Linq; using BizHawk.Emulation.Common; using BizHawk.Emulation.DiscSystem; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs b/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs index 434b3e55fd..c3b2f1da0c 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/LibNymaCore.cs @@ -1,8 +1,6 @@ using System; -using System.Collections.Generic; using System.Runtime.InteropServices; using BizHawk.BizInvoke; -using BizHawk.Common; namespace BizHawk.Emulation.Cores.Waterbox { diff --git a/src/BizHawk.Emulation.Cores/Waterbox/LibWaterboxCore.cs b/src/BizHawk.Emulation.Cores/Waterbox/LibWaterboxCore.cs index 49c3a3c15c..035ac090e9 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/LibWaterboxCore.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/LibWaterboxCore.cs @@ -1,6 +1,4 @@ -using BizHawk.Common; -using BizHawk.BizInvoke; -using BizHawk.Emulation.Common; +using BizHawk.BizInvoke; using System; using System.Runtime.InteropServices; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.ComponentModel.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.ComponentModel.cs index aab255f08e..550fc0f39f 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.ComponentModel.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.ComponentModel.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.ComponentModel; -using System.ComponentModel.DataAnnotations; using System.Globalization; using System.Linq; using NymaTypes; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs index 88084d58f7..4cf3a55ef6 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.Settings.cs @@ -1,11 +1,9 @@ using System; using System.Collections.Generic; -using System.ComponentModel; using System.Linq; using System.Runtime.InteropServices; using System.Text; using BizHawk.BizInvoke; -using BizHawk.Common; using BizHawk.Emulation.Common; using NymaTypes; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs index 51cfa80fae..39647e2051 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/NymaCore.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Runtime.InteropServices; -using System.Threading; using System.Threading.Tasks; using BizHawk.BizInvoke; using BizHawk.Common; diff --git a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs index 8ad1dc1bbc..80303a382f 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxCore.cs @@ -4,7 +4,6 @@ using BizHawk.Emulation.Common; using System; using System.IO; using System.Linq; -using System.Runtime.InteropServices; using System.Collections.Generic; namespace BizHawk.Emulation.Cores.Waterbox diff --git a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs index f00a22f71d..085d2e39c7 100644 --- a/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs +++ b/src/BizHawk.Emulation.Cores/Waterbox/WaterboxHost.cs @@ -2,11 +2,7 @@ using BizHawk.BizInvoke; using BizHawk.Emulation.Common; using System; -using System.Collections.Generic; using System.IO; -using System.Linq; -using System.Runtime.InteropServices; -using System.Threading; using static BizHawk.Emulation.Cores.Waterbox.WaterboxHostNative; namespace BizHawk.Emulation.Cores.Waterbox