Merge remote-tracking branch 'origin/GP-5671_Dan_fixStaleLogicalBpt' into Ghidra_11.4

This commit is contained in:
Ryan Kurtz
2025-05-15 13:33:58 -04:00
2 changed files with 11 additions and 6 deletions
@@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -21,7 +21,7 @@ import ghidra.trace.model.breakpoint.TraceBreakpoint;
public interface LogicalBreakpointsChangeListener {
default void breakpointAdded(LogicalBreakpoint added) {
};
}
default void breakpointsAdded(Collection<LogicalBreakpoint> added) {
for (LogicalBreakpoint a : added) {
@@ -30,7 +30,7 @@ public interface LogicalBreakpointsChangeListener {
}
default void breakpointUpdated(LogicalBreakpoint updated) {
};
}
default void breakpointsUpdated(Collection<LogicalBreakpoint> updated) {
for (LogicalBreakpoint u : updated) {
@@ -39,7 +39,7 @@ public interface LogicalBreakpointsChangeListener {
}
default void breakpointRemoved(LogicalBreakpoint removed) {
};
}
default void breakpointsRemoved(Collection<LogicalBreakpoint> removed) {
for (LogicalBreakpoint r : removed) {