X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=openflowplugin-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fopenflowplugin%2Fimpl%2Futil%2FMatchUtilTest.java;h=75273c26af54eb75be485d92de9c78feb42ec0a6;hb=a19846506c0789d64a543884713df0ae1cab2a23;hp=55918ad62445cd1fc361ed483a214f427e37cfd6;hpb=0bab64a471eee587c595ca072708412c6f77dea6;p=openflowplugin.git diff --git a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/util/MatchUtilTest.java b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/util/MatchUtilTest.java index 55918ad624..75273c26af 100644 --- a/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/util/MatchUtilTest.java +++ b/openflowplugin-impl/src/test/java/org/opendaylight/openflowplugin/impl/util/MatchUtilTest.java @@ -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; }