Reduce JSR305 proliferation
[controller.git] / opendaylight / md-sal / sal-dom-broker / src / test / java / org / opendaylight / controller / md / sal / dom / broker / impl / DOMNotificationRouterTest.java
index 36c5f8f4a729bc1a64fbf7d3166bc958e116cdf5..c0f0e0234bb4bf8760582029fb33b17b62d405a1 100644 (file)
@@ -22,7 +22,7 @@ import java.util.Set;
 import java.util.concurrent.ExecutionException;
 import java.util.concurrent.TimeUnit;
 import java.util.concurrent.TimeoutException;
-import javax.annotation.Nullable;
+import org.eclipse.jdt.annotation.Nullable;
 import org.junit.BeforeClass;
 import org.junit.Test;
 import org.opendaylight.controller.md.sal.dom.api.DOMEvent;
@@ -160,7 +160,7 @@ public class DOMNotificationRouterTest {
             receivedNotification.set(notification);
         }
 
-        void verifyReceived(final SchemaPath path, final ContainerNode body, @Nullable final Date eventTime)
+        void verifyReceived(final SchemaPath path, final ContainerNode body, final @Nullable Date eventTime)
                 throws InterruptedException, ExecutionException, TimeoutException {
             final DOMNotification actual = receivedNotification.get(5, TimeUnit.SECONDS);
             assertEquals(path, actual.getType());
@@ -191,7 +191,7 @@ public class DOMNotificationRouterTest {
             receivedNotification.set(notification);
         }
 
-        void verifyReceived(final SchemaPath path, final ContainerNode body, @Nullable final Instant eventTime)
+        void verifyReceived(final SchemaPath path, final ContainerNode body, final @Nullable Instant eventTime)
                 throws InterruptedException, ExecutionException, TimeoutException {
             final org.opendaylight.mdsal.dom.api.DOMNotification actual =
                     receivedNotification.get(5, TimeUnit.SECONDS);