Fix warnings/javadocs in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / AddShardReplica.java
index fd20d20c0bdccaa8730bd643d32c756c78758e8b..c9028466d46632de7945a7d7368b885ab8ae8bfe 100644 (file)
@@ -8,8 +8,8 @@
 
 package org.opendaylight.controller.cluster.datastore.messages;
 
-import javax.annotation.Nonnull;
 import com.google.common.base.Preconditions;
+import javax.annotation.Nonnull;
 
 /**
  * A message sent to the ShardManager to dynamically add a new local shard
@@ -27,16 +27,16 @@ public class AddShardReplica {
      * @param shardName name of the shard that is to be locally replicated.
      */
 
-    public AddShardReplica (@Nonnull String shardName){
+    public AddShardReplica(@Nonnull String shardName) {
         this.shardName = Preconditions.checkNotNull(shardName, "ShardName should not be null");
     }
 
-    public String getShardName(){
+    public String getShardName() {
         return this.shardName;
     }
 
     @Override
-    public String toString(){
+    public String toString() {
         return "AddShardReplica[ShardName=" + shardName + "]";
     }
 }