Get rid of JSR305 annotations
[bgpcep.git] / bgp / extensions / evpn / src / main / java / org / opendaylight / protocol / bgp / evpn / spi / EsiParser.java
index a44da852d0d7168e939e3e766414b3a4d61476dd..c0fb9a41dc77a4d6e4d97197922caccb5d98b869 100644 (file)
@@ -5,13 +5,13 @@
  * 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.protocol.bgp.evpn.spi;
 
 import io.netty.buffer.ByteBuf;
-import javax.annotation.Nonnull;
+import org.eclipse.jdt.annotation.NonNullByDefault;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.evpn.rev180329.esi.Esi;
 
+@NonNullByDefault
 public interface EsiParser {
     /**
      * Parse Ethernet Segment Identifier.
@@ -19,6 +19,5 @@ public interface EsiParser {
      * @param buffer encoded ESI body in Bytebuf
      * @return Ethernet Segment Identifier
      */
-    @Nonnull
-    Esi parseEsi(@Nonnull ByteBuf buffer);
+    Esi parseEsi(ByteBuf buffer);
 }