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/ExecuteActionRequest.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ExecuteActionRequest.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ExecuteActionRequest.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ExecuteActionRequest.java
index 4c37a86d3..851b2d4a7 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ExecuteActionRequest.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ExecuteActionRequest.java
@@ -18,14 +18,14 @@ import org.eclipse.jface.dialogs.MessageDialog;
/**
* Plain status collector for actions. Has no result.
- *
+ *
* @since 3.3
- *
+ *
*/
public class ExecuteActionRequest extends DebugCommandRequest {
-
+
private ICommandParticipant fParticipant = null;
-
+
public ExecuteActionRequest(Object[] elements) {
super(elements);
}
@@ -68,7 +68,7 @@ public class ExecuteActionRequest extends DebugCommandRequest {
}
}
}
-
+
public void setCommandParticipant(ICommandParticipant participant) {
fParticipant = participant;
}

Back to the top