mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Bug 100756: Breakpoints listed twice in Breakpoints view.
This commit is contained in:
parent
b5d98c79f4
commit
3d4b84023f
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-05-23 Mikhail Khodjaiants
|
||||
Bug 100756: Breakpoints listed twice in Breakpoints view.
|
||||
* CBreakpointManager.java
|
||||
|
||||
2005-05-21 Mikhail Khodjaiants
|
||||
Minor refactoring.
|
||||
* CMemoryBlockExtension.java
|
||||
|
|
|
@ -95,11 +95,11 @@ public class CBreakpointManager implements IBreakpointManagerListener, ICDIEvent
|
|||
fCDIBreakpoints.put( cdiBreakpoint, breakpoint );
|
||||
}
|
||||
|
||||
protected ICDIBreakpoint getCDIBreakpoint( ICBreakpoint breakpoint ) {
|
||||
protected synchronized ICDIBreakpoint getCDIBreakpoint( ICBreakpoint breakpoint ) {
|
||||
return (ICDIBreakpoint)fCBreakpoints.get( breakpoint );
|
||||
}
|
||||
|
||||
protected ICBreakpoint getCBreakpoint( ICDIBreakpoint cdiBreakpoint ) {
|
||||
protected synchronized ICBreakpoint getCBreakpoint( ICDIBreakpoint cdiBreakpoint ) {
|
||||
return (ICBreakpoint)fCDIBreakpoints.get( cdiBreakpoint );
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue