Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/ShowHistoryAction.java')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/ShowHistoryAction.java12
1 files changed, 3 insertions, 9 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/ShowHistoryAction.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/ShowHistoryAction.java
index 3e68bd2f0..a365879db 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/ShowHistoryAction.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/actions/ShowHistoryAction.java
@@ -58,9 +58,7 @@ public class ShowHistoryAction extends CVSAction {
}
return new ICVSRemoteFile[0];
}
- /*
- * @see CVSAction#executeIAction)
- */
+
@Override
public void execute(IAction action) throws InterruptedException, InvocationTargetException {
run((IRunnableWithProgress) monitor -> {
@@ -68,17 +66,13 @@ public class ShowHistoryAction extends CVSAction {
TeamUI.showHistoryFor(getTargetPage(), files[0], null);
}, false /* cancelable */, PROGRESS_BUSYCURSOR);
}
- /*
- * @see TeamAction#isEnabled()
- */
+
@Override
public boolean isEnabled() {
ICVSRemoteFile[] resources = getSelectedRemoteFiles();
return resources.length == 1;
}
- /**
- * @see org.eclipse.team.internal.ccvs.ui.actions.CVSAction#getErrorTitle()
- */
+
@Override
protected String getErrorTitle() {
return CVSUIMessages.ShowHistoryAction_showHistory;

Back to the top