Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/breakpoints/CWatchpoint.java')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/breakpoints/CWatchpoint.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/breakpoints/CWatchpoint.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/breakpoints/CWatchpoint.java
index b995859cab8..75f992d126d 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/breakpoints/CWatchpoint.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/breakpoints/CWatchpoint.java
@@ -36,11 +36,11 @@ public class CWatchpoint extends CBreakpoint implements ICWatchpoint2 {
/**
* Constructor for CWatchpoint.
*/
- public CWatchpoint( IResource resource, Map attributes, boolean add ) throws CoreException {
+ public CWatchpoint( IResource resource, Map<String, Object> attributes, boolean add ) throws CoreException {
super( resource, getMarkerType(), attributes, add );
}
- protected CWatchpoint( IResource resource, String marker, Map attributes, boolean add ) throws CoreException {
+ protected CWatchpoint( IResource resource, String marker, Map<String, Object> attributes, boolean add ) throws CoreException {
super( resource, marker, attributes, add );
}
@@ -87,7 +87,7 @@ public class CWatchpoint extends CBreakpoint implements ICWatchpoint2 {
format = BreakpointMessages.getString( "CWatchpoint.1" ); //$NON-NLS-1$
else if ( isWriteType() && isReadType() )
format = BreakpointMessages.getString( "CWatchpoint.2" ); //$NON-NLS-1$
- return MessageFormat.format( format, new String[] { CDebugUtils.getBreakpointText( this, false ) } );
+ return MessageFormat.format( format, new Object[] { CDebugUtils.getBreakpointText( this, false ) } );
}
/* (non-Javadoc)

Back to the top