Split out sal-distributed-eos
[controller.git] / opendaylight / md-sal / sal-distributed-eos / src / main / java / org / opendaylight / controller / cluster / entityownership / selectionstrategy / AbstractEntityOwnerSelectionStrategy.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.selectionstrategy;
+package org.opendaylight.controller.cluster.entityownership.selectionstrategy;
 
 import java.util.Map;
 
@@ -15,7 +14,8 @@ public abstract class AbstractEntityOwnerSelectionStrategy implements EntityOwne
     private final long selectionDelayInMillis;
     private final Map<String, Long> initialStatistics;
 
-    protected AbstractEntityOwnerSelectionStrategy(long selectionDelayInMillis, Map<String, Long> initialStatistics) {
+    protected AbstractEntityOwnerSelectionStrategy(final long selectionDelayInMillis,
+            final Map<String, Long> initialStatistics) {
         this.selectionDelayInMillis = selectionDelayInMillis;
         this.initialStatistics = initialStatistics;
     }