Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/StepOverCommandAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/StepOverCommandAction.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/StepOverCommandAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/StepOverCommandAction.java
index 21e7cda98..a0773e561 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/StepOverCommandAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/StepOverCommandAction.java
@@ -20,15 +20,15 @@ import org.eclipse.jface.resource.ImageDescriptor;
/**
* Step over action.
- *
+ *
* @since 3.3
*/
public class StepOverCommandAction extends DebugCommandAction {
-
+
public StepOverCommandAction() {
setActionDefinitionId("org.eclipse.debug.ui.commands.StepOver"); //$NON-NLS-1$
}
-
+
@Override
public String getText() {
return ActionMessages.StepOverAction_0;
@@ -63,7 +63,7 @@ public class StepOverCommandAction extends DebugCommandAction {
public String getToolTipText() {
return ActionMessages.StepOverAction_3;
}
-
+
@Override
protected Class<IStepOverHandler> getCommandType() {
return IStepOverHandler.class;

Back to the top