Mark potentially-static methods as static
[genius.git] / mdsalutil / mdsalutil-api / src / test / java / org / opendaylight / genius / mdsalutil / actions / ActionMoveSourceDestinationIpTest.java
index f74404b124e86ec411f110d5e0d2004cdc8477e4..1093cf543bcad58f0f9a1c9c049064a8245d58c5 100644 (file)
@@ -24,14 +24,14 @@ import org.opendaylight.yangtools.yang.common.Empty;
  * Test class for {@link ActionMoveSourceDestinationIp}.
  */
 public class ActionMoveSourceDestinationIpTest {
-    private XtendBeanGenerator generator = new XtendBeanGenerator();
+    private final XtendBeanGenerator generator = new XtendBeanGenerator();
 
     @Test
     public void actionInfoTest() {
         verifyAction(new ActionMoveSourceDestinationIp().buildAction());
     }
 
-    private void verifyAction(Action action) {
+    private static void verifyAction(Action action) {
         assertTrue(action.getAction() instanceof NxActionRegMoveNodesNodeTableFlowApplyActionsCase);
         NxActionRegMoveNodesNodeTableFlowApplyActionsCase actionCase =
             (NxActionRegMoveNodesNodeTableFlowApplyActionsCase) action.getAction();