Fixing the BuilderParents generated by protobuf with FQN and fixing @returns => @return

This commit is contained in:
Viktor Klang 2011-11-08 19:10:07 +01:00
parent 55d2a48887
commit 3021baa3e4
7 changed files with 22 additions and 22 deletions

View file

@ -22,13 +22,13 @@ trait EventBus {
/**
* Attempts to register the subscriber to the specified Classifier
* @returns true if successful and false if not (because it was already subscribed to that Classifier, or otherwise)
* @return true if successful and false if not (because it was already subscribed to that Classifier, or otherwise)
*/
def subscribe(subscriber: Subscriber, to: Classifier): Boolean
/**
* Attempts to deregister the subscriber from the specified Classifier
* @returns true if successful and false if not (because it wasn't subscribed to that Classifier, or otherwise)
* @return true if successful and false if not (because it wasn't subscribed to that Classifier, or otherwise)
*/
def unsubscribe(subscriber: Subscriber, from: Classifier): Boolean