Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java
index 0969d70b3..69097a7c4 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IRestartHandler.java
@@ -4,22 +4,22 @@
* 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:
* Wind River Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.core.commands;
/**
- * A restart command allows the debugger to quickly restart the current debug
- * session without terminating and re-launching.
+ * A restart command allows the debugger to quickly restart the current debug
+ * session without terminating and re-launching.
* <p>
* Clients may implement this interface. The debug platform provides a
- * restart action that delegates to this handler interface. Platform does not
+ * restart action that delegates to this handler interface. Platform does not
* provide a default implementation of this handler, so to enable this action
* the debugger implementation must provide one.
* </p>
- *
+ *
* @since 3.6
*/
public interface IRestartHandler extends IDebugCommandHandler {

Back to the top