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/UpdateHandlerRequest.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateHandlerRequest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateHandlerRequest.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateHandlerRequest.java
index 9e8d3e616..e969b2d2e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateHandlerRequest.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/UpdateHandlerRequest.java
@@ -17,15 +17,15 @@ import org.eclipse.debug.internal.core.commands.DebugCommandRequest;
* Collects whether a handler is enabled for a set of elements and
* reports its vote to an action updater collecting results from
* other handlers.
- *
+ *
* @since 3.3
*
*/
public class UpdateHandlerRequest extends DebugCommandRequest implements IEnabledStateRequest {
-
+
private boolean fEnabled = false;
private ActionsUpdater fUpdater;
-
+
public UpdateHandlerRequest(Object[] elements, ActionsUpdater updater) {
super(elements);
fUpdater = updater;

Back to the top