Revert "Migrate concepts to use JDT annotations"
[yangtools.git] / common / concepts / src / main / java / org / opendaylight / yangtools / concepts / ObjectRegistration.java
index 124ea438ce280e9c363f13a59399852860aed25d..6d1844f9001f5013c98f0af3b85abd3585d9a640 100644 (file)
@@ -7,7 +7,7 @@
  */
 package org.opendaylight.yangtools.concepts;
 
-import org.eclipse.jdt.annotation.NonNull;
+import javax.annotation.Nonnull;
 
 /**
  * Class representing a registration of an object. Such a registration is a proper resource and should be cleaned up
@@ -22,5 +22,5 @@ public interface ObjectRegistration<T> extends Registration {
      *
      * @return Registered object.
      */
-    @NonNull T getInstance();
+    @Nonnull T getInstance();
 }