This is an automated email from the ASF dual-hosted git repository. rombert pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-mom.git
commit 06ba1e172f4062d497bf0296803f894fec6fbf36 Author: Ian Boston <[email protected]> AuthorDate: Wed Oct 5 09:45:08 2016 +0000 SLING-5645 - more javsoc fixes. git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1763376 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/sling/mom/RequeueMessageException.java | 6 +++--- src/main/java/org/apache/sling/mom/Subscriber.java | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/sling/mom/RequeueMessageException.java b/src/main/java/org/apache/sling/mom/RequeueMessageException.java index be1d0b2..2e84577 100644 --- a/src/main/java/org/apache/sling/mom/RequeueMessageException.java +++ b/src/main/java/org/apache/sling/mom/RequeueMessageException.java @@ -25,7 +25,7 @@ public class RequeueMessageException extends Exception { /** * - * @param message + * @param message the message */ public RequeueMessageException(String message) { super(message); @@ -33,8 +33,8 @@ public class RequeueMessageException extends Exception { /** * - * @param message - * @param cause + * @param message the message + * @param cause the cause */ public RequeueMessageException(String message, Throwable cause) { super(message, cause); diff --git a/src/main/java/org/apache/sling/mom/Subscriber.java b/src/main/java/org/apache/sling/mom/Subscriber.java index ed5ce19..9c9fd25 100644 --- a/src/main/java/org/apache/sling/mom/Subscriber.java +++ b/src/main/java/org/apache/sling/mom/Subscriber.java @@ -39,8 +39,8 @@ public interface Subscriber { /** * Will be called with each message matching the filters the TopicListener is registered with. * - * @param topic - * @param message + * @param topic message topic. + * @param message message as a map of maps. */ void onMessage(Types.TopicName topic, Map<String, Object> message); -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
