Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Scholz2014-10-02 23:02:53 +0000
committerLars Vogel2014-10-09 13:11:49 +0000
commitae626041d8b90e01888c0de1a7978c9b6cf35297 (patch)
treea5f2cfb7d33bd6b5cb8d7e599d6f0ef95f7fdb81 /bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
parentee816439e888b95d2222e1e78e009eb9cab8119c (diff)
downloadeclipse.platform.ui-ae626041d8b90e01888c0de1a7978c9b6cf35297.tar.gz
eclipse.platform.ui-ae626041d8b90e01888c0de1a7978c9b6cf35297.tar.xz
eclipse.platform.ui-ae626041d8b90e01888c0de1a7978c9b6cf35297.zip
Bug 441244 - Remove unnecessary (non-Javadoc) statements
Change-Id: Ia6180cb3f6dd1fb5c42e04f5647e8fc505b67e2c Signed-off-by: Simon Scholz <simon.scholz@vogella.com>
Diffstat (limited to 'bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java')
-rw-r--r--bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java b/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
index e8fa0e8e0d1..ab4600882f3 100644
--- a/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
+++ b/bundles/org.eclipse.ui.navigator/src/org/eclipse/ui/navigator/CommonNavigator.java
@@ -627,25 +627,16 @@ public class CommonNavigator extends ViewPart implements ISetSelectionTarget, IS
return getSite().getPage().getInput();
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablesSource#getSaveables()
- */
@Override
public Saveable[] getSaveables() {
return getNavigatorContentService().getSaveablesService().getSaveables();
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablesSource#getActiveSaveables()
- */
@Override
public Saveable[] getActiveSaveables() {
return getNavigatorContentService().getSaveablesService().getActiveSaveables();
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablePart#doSave(org.eclipse.core.runtime.IProgressMonitor)
- */
@Override
public void doSave(IProgressMonitor monitor) {
// Ignore. This method is not called because CommonNavigator implements
@@ -653,17 +644,11 @@ public class CommonNavigator extends ViewPart implements ISetSelectionTarget, IS
// Saveable protocol.
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablePart#doSaveAs()
- */
@Override
public void doSaveAs() {
// ignore
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablePart#isDirty()
- */
@Override
public boolean isDirty() {
Saveable[] saveables = getSaveables();
@@ -675,25 +660,16 @@ public class CommonNavigator extends ViewPart implements ISetSelectionTarget, IS
return false;
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablePart#isSaveAsAllowed()
- */
@Override
public boolean isSaveAsAllowed() {
return false;
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.ISaveablePart#isSaveOnCloseNeeded()
- */
@Override
public boolean isSaveOnCloseNeeded() {
return isDirty();
}
- /* (non-Javadoc)
- * @see org.eclipse.ui.part.IShowInTarget#show(org.eclipse.ui.part.ShowInContext)
- */
@Override
public boolean show(ShowInContext context) {
IStructuredSelection selection = getSelection(context);

Back to the top