Merge "Remove redundant type specifiers"
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / util / MatchUtilTest.java
index 55918ad62445cd1fc361ed483a214f427e37cfd6..75273c26af54eb75be485d92de9c78feb42ec0a6 100644 (file)
@@ -30,9 +30,9 @@ public class MatchUtilTest {
 
     private MatchV10Builder expectedV10Match() {
         Short zeroShort = Short.valueOf("0");
-        Integer zeroInteger = Integer.valueOf(0);
+        Integer zeroInteger = 0;
         MatchV10Builder matchV10Builder = new MatchV10Builder();
-        matchV10Builder.setDlDst( ZERO_MAC_ADDRESS);
+        matchV10Builder.setDlDst(ZERO_MAC_ADDRESS);
         matchV10Builder.setDlSrc(ZERO_MAC_ADDRESS);
         matchV10Builder.setDlType(zeroInteger);
         matchV10Builder.setDlVlan(zeroInteger);
@@ -46,7 +46,8 @@ public class MatchUtilTest {
         matchV10Builder.setNwTos(zeroShort);
         matchV10Builder.setTpDst(zeroInteger);
         matchV10Builder.setTpSrc(zeroInteger);
-        FlowWildcardsV10 flowWildcardsV10 = new FlowWildcardsV10(true, true, true, true, true, true, true, true, true, true);
+        FlowWildcardsV10 flowWildcardsV10 =
+                new FlowWildcardsV10(true, true, true, true, true, true, true, true, true, true);
         matchV10Builder.setWildcards(flowWildcardsV10);
         return matchV10Builder;
     }