From 1d2159ee17b68cd0ad7101c3133dd4e11f955eeb Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Sun, 11 Aug 2024 16:57:32 +0200 Subject: [PATCH] Fixing warnings --- .../Consoles/Atari/Stella/LibStella.cs | 3 +-- .../Consoles/Atari/Stella/Stella.Core.cs | 8 +------- .../Consoles/Atari/Stella/Stella.IEmulator.cs | 1 - .../Consoles/Atari/Stella/Stella.IMemoryDomains.cs | 3 +-- .../Consoles/Atari/Stella/Stella.ISettable.cs | 3 +-- .../Consoles/Atari/Stella/Stella.ISoundProvider.cs | 3 +-- .../Consoles/Atari/Stella/Stella.IVideoProvider.cs | 4 +--- .../Consoles/Atari/Stella/Stella.cs | 5 +---- .../Consoles/Atari/Stella/StellaControllerDeck.cs | 3 +-- .../Consoles/Atari/Stella/StellaControllers.cs | 3 +-- 10 files changed, 9 insertions(+), 27 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/LibStella.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/LibStella.cs index 3e107037c23..5565ac83600 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/LibStella.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/LibStella.cs @@ -1,5 +1,4 @@ -using System; -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; using BizHawk.BizInvoke; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.Core.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.Core.cs index 25214597cae..85d8f36362b 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.Core.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.Core.cs @@ -1,10 +1,4 @@ -using System; - -using BizHawk.Common; -using BizHawk.Common.NumberExtensions; - -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Cores.Components.M6502; +using BizHawk.Emulation.Cores.Components.M6502; using System.Runtime.CompilerServices; namespace BizHawk.Emulation.Cores.Atari.Stella diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IEmulator.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IEmulator.cs index 1946e3848b7..31c40c9c5f8 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IEmulator.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IEmulator.cs @@ -1,5 +1,4 @@ using BizHawk.Emulation.Common; -using System; namespace BizHawk.Emulation.Cores.Atari.Stella { diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IMemoryDomains.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IMemoryDomains.cs index 60f51977c29..bb9756f0de4 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IMemoryDomains.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IMemoryDomains.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; using BizHawk.Emulation.Common; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs index 6aff1c998e8..10c6a8db935 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISettable.cs @@ -1,5 +1,4 @@ -using System; -using System.ComponentModel; +using System.ComponentModel; using System.Drawing; using Newtonsoft.Json; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISoundProvider.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISoundProvider.cs index 0009ba9d6f7..72a599dfd20 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISoundProvider.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.ISoundProvider.cs @@ -1,5 +1,4 @@ -using System; -using BizHawk.Emulation.Common; +using BizHawk.Emulation.Common; using System.Runtime.InteropServices; using BizHawk.Common; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IVideoProvider.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IVideoProvider.cs index 901beca8316..43a7afee942 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IVideoProvider.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.IVideoProvider.cs @@ -1,6 +1,4 @@ -using System; -using BizHawk.Emulation.Common; -using BizHawk.Emulation.Cores.Atari.Atari2600; +using BizHawk.Emulation.Common; using BizHawk.Common; namespace BizHawk.Emulation.Cores.Atari.Stella diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs index f0834e8dcf7..bc9c045ed6a 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/Stella.cs @@ -1,10 +1,7 @@ -using System; -using System.Collections; -using System.Linq; +using System.Linq; using System.Runtime.InteropServices; using BizHawk.BizInvoke; using BizHawk.Common; -using BizHawk.Common.IOExtensions; using BizHawk.Common.PathExtensions; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Consoles.Atari.Stella; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllerDeck.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllerDeck.cs index 44d4743b4f0..289b776c193 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllerDeck.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllerDeck.cs @@ -1,5 +1,4 @@ -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; using BizHawk.Common; diff --git a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllers.cs b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllers.cs index 3788528f313..4dad8d299f4 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllers.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Atari/Stella/StellaControllers.cs @@ -1,5 +1,4 @@ -using System; -using System.Linq; +using System.Linq; using BizHawk.Common; using BizHawk.Emulation.Common;