Tweaked javadocs

This commit is contained in:
nathan 2016-02-09 18:32:49 +01:00
parent 3b94bce905
commit 3e96e0d0b8
2 changed files with 4 additions and 2 deletions

View File

@ -132,7 +132,7 @@ The MessageBus is available from the Maven Central Repository using the followin
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>MessageBus</artifactId> <artifactId>MessageBus</artifactId>
<version>1.3</version> <version>1.4</version>
</dependency> </dependency>
``` ```
@ -145,3 +145,4 @@ This project is distributed under the terms of the Apache v2.0 License. See file

View File

@ -62,7 +62,8 @@ public interface PubSubSupport {
* receive any messages (provided that running publications/iterators in other threads * receive any messages (provided that running publications/iterators in other threads
* have not yet obtained a reference to the listener) * have not yet obtained a reference to the listener)
* <p> * <p>
* A call to this method passing any object that is not subscribed will not have any effect and is silently ignored. * A call to this method passing any object that is not subscribed will not have any effect and is
* silently ignored.
*/ */
void unsubscribe(Object listener); void unsubscribe(Object listener);