Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ContentChangeNotifier.java')
-rw-r--r--bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ContentChangeNotifier.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ContentChangeNotifier.java b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ContentChangeNotifier.java
index d598889d1..bfcb297f8 100644
--- a/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ContentChangeNotifier.java
+++ b/bundles/org.eclipse.compare/compare/org/eclipse/compare/internal/ContentChangeNotifier.java
@@ -24,7 +24,7 @@ public class ContentChangeNotifier implements IContentChangeNotifier {
private ListenerList fListenerList;
private final IContentChangeNotifier element;
-
+
public ContentChangeNotifier(IContentChangeNotifier element) {
this.element = element;
}
@@ -37,7 +37,7 @@ public class ContentChangeNotifier implements IContentChangeNotifier {
fListenerList= new ListenerList();
fListenerList.add(listener);
}
-
+
/* (non-Javadoc)
* see IContentChangeNotifier.removeChangeListener
*/
@@ -48,7 +48,7 @@ public class ContentChangeNotifier implements IContentChangeNotifier {
fListenerList= null;
}
}
-
+
/**
* Notifies all registered <code>IContentChangeListener</code>s of a content change.
*/
@@ -82,7 +82,7 @@ public class ContentChangeNotifier implements IContentChangeNotifier {
/**
* Return whether this notifier is empty (i.e. has no listeners).
- * @return whether this notifier is empty
+ * @return whether this notifier is empty
*/
public boolean isEmpty() {
return fListenerList == null || fListenerList.isEmpty();

Back to the top