Fix warnings/javadocs in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / messages / SelectOwner.java
index 250abf61487a288382b18802e1aa24cfc4b85eaf..8cd4f7853dd62fe9c0058f331817cb907aa352c8 100644 (file)
@@ -14,7 +14,7 @@ import org.opendaylight.controller.cluster.datastore.entityownership.selectionst
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
 /**
- * Message sent when a new owner needs to be selected
+ * Message sent when a new owner needs to be selected.
  */
 public class SelectOwner {
     private final YangInstanceIdentifier entityPath;
@@ -44,10 +44,7 @@ public class SelectOwner {
 
     @Override
     public String toString() {
-        return "SelectOwner{" +
-                "entityPath=" + entityPath +
-                ", allCandidates=" + allCandidates +
-                ", ownerSelectionStrategy=" + ownerSelectionStrategy +
-                '}';
+        return "SelectOwner [entityPath=" + entityPath + ", allCandidates=" + allCandidates
+                + ", ownerSelectionStrategy=" + ownerSelectionStrategy + "]";
     }
 }