mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-26 19:33:44 +08:00
Merge remote-tracking branch 'origin/GP-5671_Dan_fixStaleLogicalBpt' into Ghidra_11.4
This commit is contained in:
+5
-5
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user