mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-18 14:35:23 +02:00
Renamed a couple of private methods.
This commit is contained in:
parent
88119eb1ea
commit
b9fa4f4ff2
1 changed files with 4 additions and 4 deletions
|
@ -580,7 +580,7 @@ public class MIBreakpointsManager extends AbstractDsfService implements IBreakpo
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void handleError() {
|
protected void handleError() {
|
||||||
AddBreakpointProblemMarker(breakpoint, "Breakpoint attribute problem: installation failed", IMarker.SEVERITY_WARNING); //$NON-NLS-1$
|
addBreakpointProblemMarker(breakpoint, "Breakpoint attribute problem: installation failed", IMarker.SEVERITY_WARNING); //$NON-NLS-1$
|
||||||
installRM.done();
|
installRM.done();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -592,7 +592,7 @@ public class MIBreakpointsManager extends AbstractDsfService implements IBreakpo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddBreakpointProblemMarker(final ICBreakpoint breakpoint, final String description, final int severity) {
|
private void addBreakpointProblemMarker(final ICBreakpoint breakpoint, final String description, final int severity) {
|
||||||
|
|
||||||
new Job("Add Breakpoint Problem Marker") { //$NON-NLS-1$
|
new Job("Add Breakpoint Problem Marker") { //$NON-NLS-1$
|
||||||
@Override
|
@Override
|
||||||
|
@ -623,7 +623,7 @@ public class MIBreakpointsManager extends AbstractDsfService implements IBreakpo
|
||||||
}.schedule();
|
}.schedule();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void RemoveBreakpointProblemMarker(final ICBreakpoint breakpoint) {
|
private void removeBreakpointProblemMarker(final ICBreakpoint breakpoint) {
|
||||||
|
|
||||||
new Job("Remove Breakpoint Problem Marker") { //$NON-NLS-1$
|
new Job("Remove Breakpoint Problem Marker") { //$NON-NLS-1$
|
||||||
@Override
|
@Override
|
||||||
|
@ -672,7 +672,7 @@ public class MIBreakpointsManager extends AbstractDsfService implements IBreakpo
|
||||||
assert threadsIDs != null;
|
assert threadsIDs != null;
|
||||||
|
|
||||||
// Remove breakpoint problem marker (if any)
|
// Remove breakpoint problem marker (if any)
|
||||||
RemoveBreakpointProblemMarker(breakpoint);
|
removeBreakpointProblemMarker(breakpoint);
|
||||||
|
|
||||||
// Minimal validation
|
// Minimal validation
|
||||||
if (!platformBPs.containsKey(breakpoint) || !breakpointIDs.containsKey(breakpoint) || !targetBPs.containsValue(breakpoint)) {
|
if (!platformBPs.containsKey(breakpoint) || !breakpointIDs.containsKey(breakpoint) || !targetBPs.containsValue(breakpoint)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue