OPNFLWPLUG-1071 : Removal of javax.annotation.Nonnnull and replacement of javax.annot...
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / device / listener / MultiMsgCollectorImpl.java
index 2bd44ba07be9f374730962c538f84ad25a1b4476..ac100b5267e6b3a59a6c406615a247d97f6ae9e4 100644 (file)
@@ -10,8 +10,8 @@ package org.opendaylight.openflowplugin.impl.device.listener;
 import com.google.common.base.Preconditions;
 import java.util.ArrayList;
 import java.util.List;
-import javax.annotation.Nonnull;
-import javax.annotation.Nullable;
+import org.eclipse.jdt.annotation.NonNull;
+import org.eclipse.jdt.annotation.Nullable;
 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.DeviceReplyProcessor;
 import org.opendaylight.openflowplugin.api.openflow.device.handlers.MultiMsgCollector;
@@ -42,7 +42,7 @@ public class MultiMsgCollectorImpl<T extends OfHeader> implements MultiMsgCollec
     }
 
     @Override
-    public void addMultipartMsg(@Nonnull final T reply, final boolean reqMore,
+    public void addMultipartMsg(@NonNull final T reply, final boolean reqMore,
                                 @Nullable final EventIdentifier eventIdentifier) {
         Preconditions.checkNotNull(reply);
         Preconditions.checkNotNull(requestContext.getXid());