Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/composite/explorer/TreeTaskExplorer.java')
-rw-r--r--org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/composite/explorer/TreeTaskExplorer.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/composite/explorer/TreeTaskExplorer.java b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/composite/explorer/TreeTaskExplorer.java
index 2a02ab91a..75c64255a 100644
--- a/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/composite/explorer/TreeTaskExplorer.java
+++ b/org.eclipse.ui.cheatsheets/src/org/eclipse/ui/internal/cheatsheets/composite/explorer/TreeTaskExplorer.java
@@ -1,10 +1,10 @@
/*******************************************************************************
- * Copyright (c) 2005, 2006 IBM Corporation and others.
+ * Copyright (c) 2005, 2015 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -27,11 +27,11 @@ import org.eclipse.ui.internal.provisional.cheatsheets.TaskExplorer;
public class TreeTaskExplorer extends TaskExplorer {
private TreeViewer viewer;
-
+
@Override
public String getId() {
return ICompositeCheatsheetTags.TREE;
- }
+ }
@Override
public void createControl(Composite parent, FormToolkit toolkit) {
@@ -41,7 +41,7 @@ public class TreeTaskExplorer extends TaskExplorer {
viewer.setContentProvider(new TreeContentProvider());
viewer.setLabelProvider(new TreeLabelProvider());
}
-
+
@Override
public void taskUpdated(ICompositeCheatSheetTask task) {
viewer.update(task, null);
@@ -69,7 +69,7 @@ public class TreeTaskExplorer extends TaskExplorer {
@Override
public void dispose() {
- viewer.getLabelProvider().dispose();
+ viewer.getLabelProvider().dispose();
}
@Override

Back to the top