Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/sync/actions/ChooseChangeFilterAction.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/sync/actions/ChooseChangeFilterAction.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/sync/actions/ChooseChangeFilterAction.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/sync/actions/ChooseChangeFilterAction.java
deleted file mode 100644
index 36fdd1916..000000000
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/sync/actions/ChooseChangeFilterAction.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Created on Jul 11, 2003
- *
- * To change the template for this generated file go to
- * Window>Preferences>Java>Code Generation>Code and Comments
- */
-package org.eclipse.team.internal.ui.sync.actions;
-
-import org.eclipse.jface.action.Action;
-import org.eclipse.team.internal.ui.Utils;
-
-
-class ChooseChangeFilterAction extends SyncViewerToolbarDropDownAction {
- private final SyncViewerActions actions;
- private SyncViewerChangeFilters filters;
- public void run() {
- Action[] enabled = filters.getActiveFilters();
- Action[] actions = filters.getFilters();
- if(actions.length != enabled.length) {
- filters.setAllEnabled();
- this.actions.refreshFilters();
- }
- }
- public ChooseChangeFilterAction(SyncViewerActions actions, SyncViewerChangeFilters filters) {
- super(filters);
- this.actions = actions;
- this.filters = filters;
- Utils.initAction(this, "action.changeFilters."); //$NON-NLS-1$
- }
-} \ No newline at end of file

Back to the top