Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipantListener.java')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipantListener.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipantListener.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipantListener.java
index 8b903670e..513e04245 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipantListener.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/ui/synchronize/ISynchronizeParticipantListener.java
@@ -11,7 +11,7 @@
package org.eclipse.team.ui.synchronize;
/**
- * A synchronize participant listener is notified when participants are added or
+ * A synchronize participant listener is notified when participants are added or
* removed from the synchronize manager.
* <p>
* Clients may implement this interface.
@@ -19,19 +19,19 @@ package org.eclipse.team.ui.synchronize;
* @see ISynchronizeManager
* @since 3.0
*/
-public interface ISynchronizeParticipantListener {
+public interface ISynchronizeParticipantListener {
/**
* Notification the given participants have been added to the synchronize
* manager.
- *
+ *
* @param participants added participants
*/
public void participantsAdded(ISynchronizeParticipant[] participants);
-
+
/**
* Notification the given participants have been removed from the
* synchronize manager.
- *
+ *
* @param participants removed participants
*/
public void participantsRemoved(ISynchronizeParticipant[] participants);

Back to the top