Split out sal-distributed-eos
[controller.git] / opendaylight / md-sal / sal-distributed-eos / src / main / java / org / opendaylight / controller / cluster / entityownership / messages / CandidateAdded.java
@@ -5,8 +5,7 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
-package org.opendaylight.controller.cluster.datastore.entityownership.messages;
+package org.opendaylight.controller.cluster.entityownership.messages;
 
 import java.util.Collection;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
@@ -22,7 +21,8 @@ public class CandidateAdded {
     private final Collection<String> allCandidates;
     private final String newCandidate;
 
-    public CandidateAdded(YangInstanceIdentifier entityPath, String newCandidate, Collection<String> allCandidates) {
+    public CandidateAdded(final YangInstanceIdentifier entityPath, final String newCandidate,
+            final Collection<String> allCandidates) {
         this.entityPath = entityPath;
         this.newCandidate = newCandidate;
         this.allCandidates = allCandidates;