aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/utils/IObserver.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/utils/IObserver.java')
-rw-r--r--main/src/cgeo/geocaching/utils/IObserver.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/main/src/cgeo/geocaching/utils/IObserver.java b/main/src/cgeo/geocaching/utils/IObserver.java
index c7842aa..bfcc798 100644
--- a/main/src/cgeo/geocaching/utils/IObserver.java
+++ b/main/src/cgeo/geocaching/utils/IObserver.java
@@ -3,11 +3,11 @@ package cgeo.geocaching.utils;
/**
* Observer interface.
* <p/>
- * An observer will receive updates about the observed object (implementing the {@link ISubject} interface)
- * through its {@link #update(T)} method.
- *
+ * An observer will receive updates about the observed object (implementing the {@link ISubject} interface) through its
+ * {@link #update(Object)} method.
+ *
* @param <T>
- * the kind of data to observe
+ * the kind of data to observe
*/
public interface IObserver<T> {