Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantSynchronizeWizard.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantSynchronizeWizard.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantSynchronizeWizard.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantSynchronizeWizard.java
index c556b552f..170904112 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantSynchronizeWizard.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ParticipantSynchronizeWizard.java
@@ -42,17 +42,11 @@ public abstract class ParticipantSynchronizeWizard extends Wizard {
setNeedsProgressMonitor(false);
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.Wizard#getWindowTitle()
- */
@Override
public String getWindowTitle() {
return TeamUIMessages.GlobalRefreshSubscriberPage_0;
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.Wizard#addPages()
- */
@Override
public void addPages() {
if (getRootResources().length == 0) {
@@ -74,9 +68,6 @@ public abstract class ParticipantSynchronizeWizard extends Wizard {
}
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.IWizard#performFinish()
- */
@Override
public boolean performFinish() {
if (importWizard != null) {
@@ -87,9 +78,6 @@ public abstract class ParticipantSynchronizeWizard extends Wizard {
}
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.Wizard#getNextPage(org.eclipse.jface.wizard.IWizardPage)
- */
@Override
public IWizardPage getNextPage(IWizardPage page) {
if(importWizard != null ) {
@@ -98,9 +86,6 @@ public abstract class ParticipantSynchronizeWizard extends Wizard {
return super.getNextPage(page);
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.Wizard#performCancel()
- */
@Override
public boolean performCancel() {
if(importWizard != null) {
@@ -109,9 +94,6 @@ public abstract class ParticipantSynchronizeWizard extends Wizard {
return super.performCancel();
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.Wizard#canFinish()
- */
@Override
public boolean canFinish() {
if(importWizard != null) {
@@ -120,9 +102,6 @@ public abstract class ParticipantSynchronizeWizard extends Wizard {
return super.canFinish();
}
- /* (non-Javadoc)
- * @see org.eclipse.jface.wizard.Wizard#getStartingPage()
- */
@Override
public IWizardPage getStartingPage() {
if(importWizard != null) {

Back to the top