Fix unit test CS warnings in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / utils / ForwardingActor.java
index f9c3f3e5359d97973835bfef25dda63819064e67..fb7431f9748d1afa8dc76c3cfd2a6b7098826682 100644 (file)
@@ -11,7 +11,7 @@ package org.opendaylight.controller.cluster.datastore.utils;
 import akka.actor.ActorRef;
 import akka.actor.UntypedActor;
 
-public class ForwardingActor extends UntypedActor{
+public class ForwardingActor extends UntypedActor {
     private final ActorRef target;
 
     private ForwardingActor(ActorRef target) {
@@ -19,8 +19,8 @@ public class ForwardingActor extends UntypedActor{
     }
 
     @Override
-    public void onReceive(Object o) throws Exception {
-        target.forward(o, context());
+    public void onReceive(Object obj) throws Exception {
+        target.forward(obj, context());
     }
 
 }