Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/ManageEditorsAction.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/ManageEditorsAction.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/ManageEditorsAction.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/ManageEditorsAction.java
deleted file mode 100644
index 3e0373215..000000000
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/actions/ManageEditorsAction.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Mylyn project committers and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *******************************************************************************/
-
-package org.eclipse.mylyn.internal.tasks.ui.actions;
-
-/**
- * @author Mik Kersten
- */
-//public class ManageEditorsAction extends Action {
-//
-// public static final String ID = "org.eclipse.mylyn.ui.editors.auto.manage";
-// public ManageEditorsAction() {
-// super("Manage Editors with Context", IAction.AS_CHECK_BOX);
-// setId(ID);
-// update(MylarTaskListPlugin.getPrefs().getBoolean(TaskListPreferenceConstants.AUTO_MANAGE_EDITORS));
-// }
-//
-// @Override
-// public void run() {
-// update(isChecked());
-// }
-//
-// public void update(boolean on) {
-// setChecked(on);
-// MylarTaskListPlugin.getPrefs().setValue(TaskListPreferenceConstants.AUTO_MANAGE_EDITORS, on);
-//
-// if (on) {
-// boolean previousValue = WorkbenchPlugin.getDefault().getPreferenceStore().getBoolean(
-// IPreferenceConstants.REUSE_EDITORS_BOOLEAN);
-// MylarTaskListPlugin.getPrefs().setValue(IPreferenceConstants.REUSE_EDITORS_BOOLEAN, previousValue);
-// WorkbenchPlugin.getDefault().getPreferenceStore().setValue(IPreferenceConstants.REUSE_EDITORS_BOOLEAN,
-// false);
-// } else {
-// boolean previousValue = MylarTaskListPlugin.getPrefs().getBoolean(
-// IPreferenceConstants.REUSE_EDITORS_BOOLEAN);
-// WorkbenchPlugin.getDefault().getPreferenceStore().setValue(IPreferenceConstants.REUSE_EDITORS_BOOLEAN,
-// previousValue);
-// }
-// }
-//}

Back to the top