Fix CS warnings in sal-remoterpc-connector and enable enforcement
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / utils / RoutingLogic.java
index 4de71949fc37eb760865f676a1e4372cb2c9472c..c7096f52808f0db47e6cdeb491217cac25d160fa 100644 (file)
@@ -13,11 +13,9 @@ import akka.actor.ActorRef;
 /**
  * This Interface is added to abstract out the way rpc execution could be
  * routed, if more than one node in cluster is capable of executing the rpc.
- *
  * We can pick node randomly, round robin manner or based on last updated time etc.
  */
 
 public interface RoutingLogic {
-
-  ActorRef select();
+    ActorRef select();
 }