1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Warning cleanup.

This commit is contained in:
Mikhail Khodjaiants 2006-05-19 15:02:39 +00:00
parent 159db54d69
commit f2d17fffb6
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2006-05-19 Mikhail Khodjaiants
Warning cleanup.
* CBreakpointManager.java
2006-05-12 Mikhail Khodjaiants
Bug 118274: Condition is not shown in the tooltip of conditional breakpoint.
* CDebugUtils.java

View file

@ -77,7 +77,7 @@ import org.eclipse.debug.core.sourcelookup.containers.LocalFileStorage;
public class CBreakpointManager implements IBreakpointsListener, IBreakpointManagerListener, ICDIEventListener, IAdaptable {
static private class BreakpointInProgess {
static class BreakpointInProgess {
private ICDIBreakpoint fCDIBreakpoint;
@ -90,7 +90,7 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
}
}
private class BreakpointMap {
class BreakpointMap {
/**
* Maps CBreakpoints to CDI breakpoints.
@ -102,7 +102,7 @@ public class CBreakpointManager implements IBreakpointsListener, IBreakpointMana
*/
private HashMap fCDIBreakpoints;
private BreakpointMap() {
protected BreakpointMap() {
fCBreakpoints = new HashMap( 10 );
fCDIBreakpoints = new HashMap( 10 );
}