From 47c8cbfb673b61b400895d660c172db87d1f6e17 Mon Sep 17 00:00:00 2001 From: Maximilien Noal Date: Thu, 7 Nov 2024 20:55:09 +0100 Subject: [PATCH] chore: Remove+Sort usings Signed-off-by: Maximilien Noal --- src/Spice86/Models/Debugging/CpuInstructionInfo.cs | 1 - src/Spice86/Models/Debugging/ExceptionInfo.cs | 3 --- src/Spice86/Models/Debugging/SoundChannelInfo.cs | 2 -- src/Spice86/Models/Debugging/VideoCardInfo.cs | 2 -- 4 files changed, 8 deletions(-) diff --git a/src/Spice86/Models/Debugging/CpuInstructionInfo.cs b/src/Spice86/Models/Debugging/CpuInstructionInfo.cs index e2304d6149..a168395213 100644 --- a/src/Spice86/Models/Debugging/CpuInstructionInfo.cs +++ b/src/Spice86/Models/Debugging/CpuInstructionInfo.cs @@ -4,7 +4,6 @@ namespace Spice86.Models.Debugging; using Iced.Intel; -using Spice86.Core.Emulator.VM.Breakpoint; using Spice86.Shared.Emulator.Memory; public partial class CpuInstructionInfo : ObservableObject { diff --git a/src/Spice86/Models/Debugging/ExceptionInfo.cs b/src/Spice86/Models/Debugging/ExceptionInfo.cs index d6be0ec81d..fe7a045999 100644 --- a/src/Spice86/Models/Debugging/ExceptionInfo.cs +++ b/src/Spice86/Models/Debugging/ExceptionInfo.cs @@ -1,5 +1,2 @@ namespace Spice86.Models.Debugging; - -using System.Reflection; - public record ExceptionInfo(string? TargetSite, string Message, string? StackTrace); \ No newline at end of file diff --git a/src/Spice86/Models/Debugging/SoundChannelInfo.cs b/src/Spice86/Models/Debugging/SoundChannelInfo.cs index 886d8efb22..9f2da79431 100644 --- a/src/Spice86/Models/Debugging/SoundChannelInfo.cs +++ b/src/Spice86/Models/Debugging/SoundChannelInfo.cs @@ -2,8 +2,6 @@ namespace Spice86.Models.Debugging; using CommunityToolkit.Mvvm.ComponentModel; -using System.ComponentModel; - public partial class SoundChannelInfo : ObservableObject { [ObservableProperty] private int _volume; [ObservableProperty] private float _stereoSeparation; diff --git a/src/Spice86/Models/Debugging/VideoCardInfo.cs b/src/Spice86/Models/Debugging/VideoCardInfo.cs index 51d7b43502..2b083784b4 100644 --- a/src/Spice86/Models/Debugging/VideoCardInfo.cs +++ b/src/Spice86/Models/Debugging/VideoCardInfo.cs @@ -2,11 +2,9 @@ namespace Spice86.Models.Debugging; using CommunityToolkit.Mvvm.ComponentModel; -using Spice86.Core.Emulator.Devices.Video.Registers; using Spice86.Core.Emulator.Devices.Video.Registers.CrtController; using Spice86.Core.Emulator.Devices.Video.Registers.General; using Spice86.Core.Emulator.Devices.Video.Registers.Graphics; -using Spice86.ViewModels; public partial class VideoCardInfo : ObservableObject { [ObservableProperty]