Migrate nullness annotations to JDT
[yangtools.git] / yang / yang-data-api / src / main / java / org / opendaylight / yangtools / yang / data / api / schema / LeafSetEntryNode.java
index 2cc0396a23a78953456527c77ab9742825cd8f99..5c5d8603cface33d3208e3bf1734aa400cda9c2f 100644 (file)
@@ -7,7 +7,6 @@
  */
 package org.opendaylight.yangtools.yang.data.api.schema;
 
-import javax.annotation.Nonnull;
 import org.opendaylight.yangtools.yang.data.api.AttributesContainer;
 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeWithValue;
 
@@ -39,5 +38,5 @@ public interface LeafSetEntryNode<T> extends AttributesContainer, NormalizedNode
      * @return {@link NodeWithValue} which identifies this leaf set entry.
      */
     @Override
-    @Nonnull NodeWithValue getIdentifier();
+    NodeWithValue getIdentifier();
 }