Bug 7521: Move DatastoreSnapshotList et al to persisted package
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / messages / RemoveShardReplica.java
index 51f9d59f85c3199a6803788a9e9a96f245799c41..0325ee9f2baa38af39d658efcca9c6a29b7d6e22 100644 (file)
@@ -26,12 +26,12 @@ public class RemoveShardReplica {
      *
      * @param shardName name of the local shard that is to be dynamically removed.
      */
-    public RemoveShardReplica (@Nonnull String shardName, @Nonnull MemberName memberName) {
+    public RemoveShardReplica(@Nonnull String shardName, @Nonnull MemberName memberName) {
         this.shardName = Preconditions.checkNotNull(shardName, "shardName should not be null");
         this.memberName = Preconditions.checkNotNull(memberName, "memberName should not be null");
     }
 
-    public String getShardName(){
+    public String getShardName() {
         return shardName;
     }