Remove Objects.{is,non}Null abuse
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / match / SctpSourcePortEntryDeserializer.java
index d58b074a0d7b06797bc3c24558df1848d23848ba..6439c195d35ba5a170fe7887ca72fef9abd62354 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 SctpSourcePortEntryDeserializer extends AbstractMatchEntryDeseriali
         processHeader(message);
         final int port = message.readUnsignedShort();
 
-        if (Objects.isNull(builder.getLayer4Match())) {
+        if (builder.getLayer4Match() == null) {
             builder.setLayer4Match(new SctpMatchBuilder()
                     .setSctpSourcePort(new PortNumber(port))
                     .build());
         } else if (builder.getLayer4Match() instanceof SctpMatch
-            && Objects.isNull(((SctpMatch) builder.getLayer4Match()).getSctpSourcePort())) {
+                && ((SctpMatch) builder.getLayer4Match()).getSctpSourcePort() == null) {
             builder.setLayer4Match(new SctpMatchBuilder((SctpMatch) builder.getLayer4Match())
                     .setSctpSourcePort(new PortNumber(port))
                     .build());
@@ -35,5 +33,4 @@ public class SctpSourcePortEntryDeserializer extends AbstractMatchEntryDeseriali
             throwErrorOnMalformed(builder, "layer4Match", "sctpSourcePort");
         }
     }
-
 }