Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java
index c28f4733f..e34f9e2bc 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandHandler.java
@@ -55,7 +55,7 @@ public interface IDebugCommandHandler {
* </p>
* @param request specifies elements to operate on and collects enabled state
*/
- public void canExecute(IEnabledStateRequest request);
+ void canExecute(IEnabledStateRequest request);
/**
* Executes this command on the elements specified in the given request
@@ -77,6 +77,6 @@ public interface IDebugCommandHandler {
* @param request specifies elements to operate on and collects execution status
* @return whether this handler remains enabled while command is executing
*/
- public boolean execute(IDebugCommandRequest request);
+ boolean execute(IDebugCommandRequest request);
}

Back to the top