Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / LocalShardNotFound.java
index 381eb562319ab3fdc494a2bc61677a8cf7daf3bf..47ec16991a67bc9bfee2dde040c73ed4085873d8 100644 (file)
@@ -10,7 +10,7 @@ package org.opendaylight.controller.cluster.datastore.messages;
 
 /**
  * LocalShardNotFound 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 cannot locate a shard in it's local registry with the shardName specified.
  */
 public class LocalShardNotFound {
@@ -21,7 +21,7 @@ public class LocalShardNotFound {
      *
      * @param shardName the name of the shard that could not be found
      */
-    public LocalShardNotFound(String shardName) {
+    public LocalShardNotFound(final String shardName) {
         this.shardName = shardName;
     }