Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/ElementLocalHistoryPageSource.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/ElementLocalHistoryPageSource.java6
1 files changed, 0 insertions, 6 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/ElementLocalHistoryPageSource.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/ElementLocalHistoryPageSource.java
index d25f11546..8bbb71e63 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/ElementLocalHistoryPageSource.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/history/ElementLocalHistoryPageSource.java
@@ -44,17 +44,11 @@ public abstract class ElementLocalHistoryPageSource extends HistoryPageSource {
super();
}
- /* (non-Javadoc)
- * @see org.eclipse.team.ui.history.IHistoryPageSource#canShowHistoryFor(java.lang.Object)
- */
@Override
public final boolean canShowHistoryFor(Object object) {
return getFile(object) != null;
}
- /* (non-Javadoc)
- * @see org.eclipse.team.ui.history.IHistoryPageSource#createPage(java.lang.Object)
- */
@Override
public final Page createPage(Object object) {
return new EditionHistoryPage(getFile(object), object);

Back to the top