diff --git a/src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs b/src/Spice86.Core/Emulator/VM/Breakpoint/BreakPointHolder.cs index f793a10f8..27df6ec13 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