Fix checkstyle violations in applications
[openflowplugin.git] / applications / forwardingrules-sync / src / test / java / org / opendaylight / openflowplugin / applications / frsync / impl / strategy / FlowForwarderTest.java
index 90c7a70986327bed553065d23e20226c526627aa..61ce84ee9dd36d7b867bef68e1e98c68703dc639 100644 (file)
@@ -152,7 +152,8 @@ public class FlowForwarderTest {
                 .setMatch(new MatchBuilder().build())
                 .build();
 
-        final Future<RpcResult<UpdateFlowOutput>> updateResult = flowForwarder.update(flowPath, flow, flowUpdated, flowCapableNodePath);
+        final Future<RpcResult<UpdateFlowOutput>> updateResult = flowForwarder.update(flowPath, flow,
+                flowUpdated, flowCapableNodePath);
 
         Mockito.verify(salFlowService).updateFlow(Matchers.<UpdateFlowInput>any());
         final UpdateFlowInput updateFlowInput = updateFlowInputCpt.getValue();
@@ -188,7 +189,8 @@ public class FlowForwarderTest {
                                 .build()).buildFuture());
 
         final Flow removeFlow = new FlowBuilder(flow).build();
-        final Future<RpcResult<RemoveFlowOutput>> removeResult = flowForwarder.remove(flowPath, removeFlow, flowCapableNodePath);
+        final Future<RpcResult<RemoveFlowOutput>> removeResult = flowForwarder.remove(flowPath,
+                removeFlow, flowCapableNodePath);
 
         Mockito.verify(salFlowService).removeFlow(Matchers.<RemoveFlowInput>any());
         final RemoveFlowInput flowInput = removeFlowInputCpt.getValue();