Correct javadoc reference
[controller.git] / opendaylight / md-sal / sal-clustering-commons / src / main / java / org / opendaylight / controller / cluster / common / actor / MeteringBehavior.java
index a49bc30427ee4f323dcb681a7d6448f5aee95f70..30331930d6b8f882a9fab12835c5ea20da0bc6fd 100644 (file)
@@ -16,7 +16,7 @@ import scala.runtime.AbstractPartialFunction;
 import scala.runtime.BoxedUnit;
 
 /**
- * Represents behaviour that can be exhibited by actors of type {@link akka.actor.UntypedActor}
+ * Represents behaviour that can be exhibited by actors of type {@link AbstractActor}
  *
  * <p>
  * This behaviour meters actor's default behaviour. It captures 2 metrics:
@@ -79,7 +79,7 @@ public class MeteringBehavior extends AbstractPartialFunction<Object, BoxedUnit>
      * @param message the message to process
      */
     @Override
-    public BoxedUnit apply(Object message) {
+    public BoxedUnit apply(final Object message) {
         final String messageType = message.getClass().getSimpleName();
         final String msgProcessingTimeByMsgType =
                 MetricRegistry.name(actorQualifiedName, MSG_PROCESSING_RATE, messageType);