Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java')
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java
index 521b7905c6d..4618413526b 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/dialogs/ViewContentProvider.java
@@ -35,8 +35,8 @@ import org.eclipse.ui.views.IViewRegistry;
public class ViewContentProvider implements ITreeContentProvider {
/**
- * Child cache. Map from Object->Object[]. Our hasChildren() method is
- * expensive so it's better to cache the results of getChildren().
+ * Child cache. Map from Object->Object[]. Our hasChildren() method is expensive
+ * so it's better to cache the results of getChildren().
*/
private Map<Object, Object[]> childMap = new HashMap<>();
@@ -155,7 +155,6 @@ public class ViewContentProvider implements ITreeContentProvider {
return combinedTopElements;
}
-
/**
* Determines if the part is a view or and editor
*
@@ -168,8 +167,8 @@ public class ViewContentProvider implements ITreeContentProvider {
}
/**
- * Remove Eclipse introview from this list, as it opened via the Help ->
- * Welcome menu
+ * Remove Eclipse introview from this list, as it opened via the Help -> Welcome
+ * menu
*/
private boolean isIntroView(String id) {
return (id.equals(IIntroConstants.INTRO_VIEW_ID));

Back to the top