aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/geb/api/IBus.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/ftbsc/geb/api/IBus.java')
-rw-r--r--src/main/java/ftbsc/geb/api/IBus.java5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/main/java/ftbsc/geb/api/IBus.java b/src/main/java/ftbsc/geb/api/IBus.java
index f27004b..485cf74 100644
--- a/src/main/java/ftbsc/geb/api/IBus.java
+++ b/src/main/java/ftbsc/geb/api/IBus.java
@@ -14,9 +14,6 @@ public interface IBus {
/**
* Unregister a listener from the bus.
- * While sensible implementations can get this quite fast, it's generally
- * faster to use {@link IListener#isActive()}, so only use this if you
- * *mean* to unregister for good.
* @param listener the listener
*/
void unregisterListener(IListener listener);
@@ -24,7 +21,7 @@ public interface IBus {
/**
* Dispatches an event, calling all of its listeners that are subscribed to this bus.
* @param event the event to fire
- * @return true if the event was canceled, false otherwise
+ * @return false if the event was canceled, true otherwise
*/
boolean handleEvent(IEvent event);
}