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/UpdateActionsRequest.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateActionsRequest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateActionsRequest.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateActionsRequest.java
index 30249935b..16cc33550 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateActionsRequest.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateActionsRequest.java
@@ -16,15 +16,15 @@ import org.eclipse.debug.internal.core.commands.DebugCommandRequest;
/**
* Boolean collector that collects boolean results from a number of voters.
* Request is cancelled when one voter votes false.
- *
+ *
* @since 3.3
*
*/
public class UpdateActionsRequest extends DebugCommandRequest implements IEnabledStateRequest {
-
+
private IEnabledTarget[] fActions;
private boolean fEnabled = false;
-
+
public UpdateActionsRequest(Object[] elements, IEnabledTarget[] actions) {
super(elements);
fActions = actions;

Back to the top