1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Fixed warnings

This commit is contained in:
John Cortell 2010-03-17 20:07:52 +00:00
parent 69c742577b
commit 2e7e95dfad

View file

@ -64,7 +64,7 @@ public class CEventBreakpoint extends CBreakpoint implements ICEventBreakpoint {
@Override
protected String getMarkerMessage() throws CoreException {
// default message, overridden by label provider, which would take care of translation
return "Event Breakpoint: " + getEventType(); // $NON-NLS-1$
return "Event Breakpoint: " + getEventType(); // $NON-NLS-1$ //$NON-NLS-1$
}
/**
@ -78,7 +78,7 @@ public class CEventBreakpoint extends CBreakpoint implements ICEventBreakpoint {
* @see ICEventBreakpoint#getEventArgument()
*/
public String getEventArgument() throws CoreException {
return ensureMarker().getAttribute(EVENT_ARG, "");
return ensureMarker().getAttribute(EVENT_ARG, ""); //$NON-NLS-1$
}
}