Migrate entity ownership to JDT annotations
[mdsal.git] / entityownership / mdsal-eos-common-api / src / test / java / org / opendaylight / mdsal / eos / common / api / GenericEntityTest.java
index 46ac72f9e2c8a4db806145811d08151b224b60e9..6f78ddc7f6e6bcbd8cc758105aac96e98c22e2a0 100644 (file)
@@ -12,7 +12,6 @@ import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotEquals;
 import static org.junit.Assert.assertTrue;
 
-import javax.annotation.Nonnull;
 import org.junit.Test;
 import org.opendaylight.yangtools.concepts.Path;
 
@@ -37,14 +36,14 @@ public class GenericEntityTest {
 
     private final class TestClass implements Path {
         @Override
-        public boolean contains(@Nonnull Path other) {
+        public boolean contains(final Path other) {
             return false;
         }
     }
 
     private final class TestClassDiff implements Path {
         @Override
-        public boolean contains(@Nonnull Path other) {
+        public boolean contains(final Path other) {
             return false;
         }
     }