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/ActionsUpdater.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ActionsUpdater.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ActionsUpdater.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ActionsUpdater.java
index fae69e01e..52e0ba685 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ActionsUpdater.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/commands/actions/ActionsUpdater.java
@@ -13,18 +13,18 @@ package org.eclipse.debug.internal.ui.commands.actions;
/**
* Collects votes from handler update requests.
- *
+ *
* @since 3.3
*
*/
public class ActionsUpdater {
-
+
private IEnabledTarget[] fActions;
private int fNumVoters;
private int fNumOfVotes = 0;
private boolean fDone = false;
private boolean fEnabled = true;
-
+
public ActionsUpdater(IEnabledTarget[] actions, int numVoters) {
fActions = actions;
fNumVoters = numVoters;

Back to the top