Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / LocalShardFound.java
index 5c58a894db92102dbd9f3a4abf70b7f9681056cd..9e546f89744280b6958c0a84c2ee0a29028e67a2 100644 (file)
@@ -12,13 +12,13 @@ import akka.actor.ActorRef;
 
 /**
  * LocalShardFound is a message that is sent by the
- * {@link org.opendaylight.controller.cluster.datastore.shardmanager.ShardManager}
+ * org.opendaylight.controller.cluster.datastore.shardmanager.ShardManager
  * when it finds a shard with the specified name in it's local shard registry.
  */
 public class LocalShardFound {
     private final ActorRef path;
 
-    public LocalShardFound(ActorRef path) {
+    public LocalShardFound(final ActorRef path) {
         this.path = path;
     }