Migrate mdsal-common-api to JDT annotations
[mdsal.git] / common / mdsal-common-api / src / test / java / org / opendaylight / mdsal / common / api / DataValidationFailedExceptionTest.java
index fcff681a3ab291be83f62f0694b01f4e15eeb401..0d0d99e7300dc022f5c211bbd0a1bf3dbfa121c1 100644 (file)
@@ -9,7 +9,6 @@ package org.opendaylight.mdsal.common.api;
 
 import static org.junit.Assert.assertEquals;
 
-import javax.annotation.Nonnull;
 import org.junit.Test;
 import org.opendaylight.yangtools.concepts.Path;
 
@@ -29,8 +28,8 @@ public class DataValidationFailedExceptionTest {
 
     private final class TestClass implements Path<TestClass> {
         @Override
-        public boolean contains(@Nonnull final TestClass other) {
+        public boolean contains(final TestClass other) {
             return false;
         }
     }
-}
\ No newline at end of file
+}