Remove Objects.{is,non}Null abuse
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / SctpDestinationPortEntryDeserializer.java
index cb59e0320107f4f6a6ed9978747fd82fb47ddbd8..76b2d9bfb81c08747e37ca949db6f1a53d96c0a5 100644 (file)
@@ -5,11 +5,9 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.openflowplugin.impl.protocol.deserialization.match;
 
 import io.netty.buffer.ByteBuf;
-import java.util.Objects;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.types.rev131026.flow.MatchBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.layer._4.match.SctpMatch;
@@ -22,12 +20,12 @@ public class SctpDestinationPortEntryDeserializer extends AbstractMatchEntryDese
         processHeader(message);
         final int port = message.readUnsignedShort();
 
-        if (Objects.isNull(builder.getLayer4Match())) {
+        if (builder.getLayer4Match() == null) {
             builder.setLayer4Match(new SctpMatchBuilder()
                     .setSctpDestinationPort(new PortNumber(port))
                     .build());
         } else if (builder.getLayer4Match() instanceof SctpMatch
-            && Objects.isNull(((SctpMatch) builder.getLayer4Match()).getSctpDestinationPort())) {
+            && ((SctpMatch) builder.getLayer4Match()).getSctpDestinationPort() == null) {
             builder.setLayer4Match(new SctpMatchBuilder((SctpMatch) builder.getLayer4Match())
                     .setSctpDestinationPort(new PortNumber(port))
                     .build());
@@ -35,5 +33,4 @@ public class SctpDestinationPortEntryDeserializer extends AbstractMatchEntryDese
             throwErrorOnMalformed(builder, "layer4Match", "sctpDestinationPort");
         }
     }
-
 }