Fix javadocs and enable doclint
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / FindLocalShard.java
index 380e71e78adc04ba01e0df89e0bdd6ab16742ce8..0179d8e0c528acdde37ac81d67b99025f71f57f1 100644 (file)
@@ -10,14 +10,14 @@ package org.opendaylight.controller.cluster.datastore.messages;
 
 /**
  * FindLocalShard is a message that should be sent to the
- * {@link org.opendaylight.controller.cluster.datastore.shardmanager.ShardManager} when we need to find a reference
+ * org.opendaylight.controller.cluster.datastore.shardmanager.ShardManager when we need to find a reference
  * to a LocalShard.
  */
 public class FindLocalShard {
     private final String shardName;
     private final boolean waitUntilInitialized;
 
-    public FindLocalShard(String shardName, boolean waitUntilInitialized) {
+    public FindLocalShard(final String shardName, final boolean waitUntilInitialized) {
         this.shardName = shardName;
         this.waitUntilInitialized = waitUntilInitialized;
     }