Fix warnings and clean up javadocs in sal-akka-raft
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / main / java / org / opendaylight / controller / cluster / raft / messages / UnInitializedFollowerSnapshotReply.java
index 4d66fa6d4d3d0fbf4dac4bf006e2f259c63e614e..f5c44f87e4fe687f636a7b9f101b667a228552e7 100644 (file)
@@ -8,14 +8,14 @@
 package org.opendaylight.controller.cluster.raft.messages;
 
 /**
- * Local message sent to self on receiving InstallSnapshotReply from a follower, this message indicates that
- * the catchup of the follower is done succesfully during AddServer scenario
+ * Local message sent to self on receiving the InstallSnapshotReply from a follower indicating that
+ * the catch up of the follower has completed successfully for an AddServer operation.
  */
 public class  UnInitializedFollowerSnapshotReply {
     private final String followerId;
 
-    public UnInitializedFollowerSnapshotReply(String followerId){
-       this.followerId = followerId;
+    public UnInitializedFollowerSnapshotReply(String followerId) {
+        this.followerId = followerId;
     }
 
     public String getFollowerId() {