Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Zarna2011-09-14 14:31:25 +0000
committerTomasz Zarna2011-09-14 14:31:25 +0000
commit5688f5941c56018778e89b1f2535d700542b5994 (patch)
tree5e55fa07be2dfd5ca26a0fcc1f99cfa04fc974a0
parentead28a372931ef8e883fa70119149c22c3eb4798 (diff)
downloadeclipse.platform.team-5688f5941c56018778e89b1f2535d700542b5994.tar.gz
eclipse.platform.team-5688f5941c56018778e89b1f2535d700542b5994.tar.xz
eclipse.platform.team-5688f5941c56018778e89b1f2535d700542b5994.zip
Remove redundant superinterface -- IAdaptable
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/SubscriberParticipantPage.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/SubscriberParticipantPage.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/SubscriberParticipantPage.java
index fcebc4391..29e806e31 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/SubscriberParticipantPage.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/SubscriberParticipantPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2006 IBM Corporation and others.
+ * Copyright (c) 2000, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -10,7 +10,6 @@
*******************************************************************************/
package org.eclipse.team.internal.ui.synchronize;
-import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.team.core.synchronize.FastSyncInfoFilter;
import org.eclipse.team.core.synchronize.SyncInfo;
@@ -32,7 +31,7 @@ import org.eclipse.team.ui.synchronize.SubscriberParticipant;
* </p>
* @since 3.0
*/
-public final class SubscriberParticipantPage extends AbstractSynchronizePage implements IAdaptable {
+public final class SubscriberParticipantPage extends AbstractSynchronizePage {
private SubscriberParticipant participant;
@@ -48,6 +47,11 @@ public final class SubscriberParticipantPage extends AbstractSynchronizePage imp
/**
* Constructs a new SynchronizeView.
+ *
+ * @param configuration
+ * a synchronize page configuration
+ * @param subscriberCollector
+ * the subscriber's collector
*/
public SubscriberParticipantPage(ISynchronizePageConfiguration configuration, SubscriberSyncInfoCollector subscriberCollector) {
super(configuration);

Back to the top