Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/actions/GoUpAction.java')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/actions/GoUpAction.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/actions/GoUpAction.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/actions/GoUpAction.java
deleted file mode 100644
index f0cc601db..000000000
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/tasklist/ui/actions/GoUpAction.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004 - 2005 University Of British Columbia 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
- *
- * Contributors:
- * University Of British Columbia - initial API and implementation
- *******************************************************************************/
-package org.eclipse.mylar.tasklist.ui.actions;
-
-import org.eclipse.jface.action.Action;
-import org.eclipse.mylar.tasklist.TaskListImages;
-import org.eclipse.mylar.tasklist.ui.views.TaskListView;
-import org.eclipse.ui.part.DrillDownAdapter;
-
-public class GoUpAction extends Action {
-
- public static final String ID = "org.eclipse.mylar.tasklist.actions.view.go.up";
-
- public GoUpAction(DrillDownAdapter drillDownAdapter) {
- setText("Go Up To Root");
- setToolTipText("Go Up To Root");
- setId(ID);
- setImageDescriptor(TaskListImages.GO_UP);
- }
-
- @Override
- public void run() {
- if(TaskListView.getDefault() != null) {
- TaskListView.getDefault().goUpToRoot();
- }
- }
-}

Back to the top