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/TerminateAndRelaunchAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAndRelaunchAction.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAndRelaunchAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAndRelaunchAction.java
index e67c7265d..b0d0713bf 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAndRelaunchAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/TerminateAndRelaunchAction.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial implementation
*******************************************************************************/
@@ -35,7 +35,7 @@ import org.eclipse.jface.viewers.StructuredSelection;
* Action which terminates a launch and then re-launches it.
*/
public class TerminateAndRelaunchAction extends DebugCommandAction {
-
+
@Override
public void postExecute(IRequest request, final Object[] targets) {
if (request.getStatus() == null || request.getStatus().isOK()) {
@@ -51,7 +51,7 @@ public class TerminateAndRelaunchAction extends DebugCommandAction {
}
}
}
- });
+ });
}
}
@@ -72,7 +72,7 @@ public class TerminateAndRelaunchAction extends DebugCommandAction {
}
return super.getContext();
}
-
+
@Override
protected Class<ITerminateHandler> getCommandType() {
@@ -89,7 +89,7 @@ public class TerminateAndRelaunchAction extends DebugCommandAction {
setEnabled(false);
return;
}
- }
+ }
}
super.debugContextChanged(event);
}
@@ -102,7 +102,7 @@ public class TerminateAndRelaunchAction extends DebugCommandAction {
return LaunchConfigurationManager.isVisible(configuration);
}
}
- return false;
+ return false;
}
@Override

Back to the top