Remove javax.annotation nullness annotations
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / actors / WriteAdapter.java
index aaeb0d10b30b32e530cb0a86b76b4fa7127136a2..de045ebbb3de9847156ecda654921f112c2ed821 100644 (file)
@@ -14,7 +14,6 @@ import akka.actor.Status.Success;
 import com.google.common.util.concurrent.FluentFuture;
 import com.google.common.util.concurrent.FutureCallback;
 import com.google.common.util.concurrent.MoreExecutors;
-import javax.annotation.Nonnull;
 import org.opendaylight.mdsal.common.api.CommitInfo;
 import org.opendaylight.mdsal.dom.api.DOMDataTreeWriteTransaction;
 import org.opendaylight.netconf.topology.singleton.messages.NormalizedNodeMessage;
@@ -52,7 +51,7 @@ class WriteAdapter {
             }
 
             @Override
-            public void onFailure(@Nonnull final Throwable throwable) {
+            public void onFailure(final Throwable throwable) {
                 requester.tell(new Failure(throwable), self);
             }
         }, MoreExecutors.directExecutor());