Refactor MessageCollectorActor and DoNothingActor
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / java / org / opendaylight / controller / cluster / raft / utils / EchoActor.java
@@ -6,16 +6,17 @@
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
-package org.opendaylight.controller.cluster.datastore.utils;
+package org.opendaylight.controller.cluster.raft.utils;
 
 import akka.actor.UntypedActor;
 
 /**
  * The EchoActor simply responds back with the same message that it receives
  */
-public class EchoActor extends UntypedActor{
+public class EchoActor extends UntypedActor {
 
-    @Override public void onReceive(Object message) throws Exception {
+    @Override
+    public void onReceive(Object message) throws Exception {
         getSender().tell(message, getSelf());
     }
 }