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