From 87a1f204d4b93904047e4a90a579bd39647d4869 Mon Sep 17 00:00:00 2001 From: Maximilien Noal Date: Tue, 5 Nov 2024 20:44:52 +0100 Subject: [PATCH] chore: IsAddressBreakpointAt remove (BreakPointHolder) Signed-off-by: Maximilien Noal --- .../Emulator/VM/Breakpoint/BreakPointHolder.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs b/src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs index f793a10f8a..27df6ec13c 100644 --- a/src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs +++ b/src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs @@ -95,13 +95,4 @@ public void TriggerBreakPointsWithAddressRange(long startAddress, long endAddres TriggerMatchingBreakPoints(address); } } - - /// - /// Determines whether there is an address breakpoint at the specified address. - /// - /// The memory address to check. - /// Whether there is an address breakpoint at the specified address. - public bool IsAddressBreakpointAt(long instructionAddress) { - return _addressBreakPoints.ContainsKey(instructionAddress); - } } \ No newline at end of file