Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java
index 5745e93f4..f5cc1be5e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ProfileLastAction.java
@@ -32,25 +32,16 @@ import org.eclipse.debug.ui.actions.RelaunchLastAction;
*/
public class ProfileLastAction extends RelaunchLastAction {
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.actions.RelaunchLastAction#getMode()
- */
@Override
public String getMode() {
return ILaunchManager.PROFILE_MODE;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getLaunchGroupId()
- */
@Override
public String getLaunchGroupId() {
return IDebugUIConstants.ID_PROFILE_LAUNCH_GROUP;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.actions.RelaunchLastAction#getText()
- */
@Override
protected String getText() {
if(LaunchingResourceManager.isContextLaunchEnabled()) {
@@ -61,25 +52,16 @@ public class ProfileLastAction extends RelaunchLastAction {
}
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.ui.actions.RelaunchLastAction#getTooltipText()
- */
@Override
protected String getTooltipText() {
return IInternalDebugCoreConstants.EMPTY_STRING;
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getCommandId()
- */
@Override
protected String getCommandId() {
return "org.eclipse.debug.ui.commands.ProfileLast"; //$NON-NLS-1$
}
- /* (non-Javadoc)
- * @see org.eclipse.debug.internal.ui.actions.RelaunchLastAction#getDescription()
- */
@Override
protected String getDescription() {
if(LaunchingResourceManager.isContextLaunchEnabled()) {

Back to the top