Remove javax.annotation nullness annotations
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / ProxyYangTextSourceProvider.java
index aa3bd3872f36cdac98d4a5de1f27f6f142167c07..c0d1aa4545ebe64443e8b990a22c5dfe4a59f4a9 100644 (file)
@@ -14,7 +14,6 @@ import akka.pattern.Patterns;
 import akka.util.Timeout;
 import java.util.Collections;
 import java.util.Set;
-import javax.annotation.Nonnull;
 import org.opendaylight.controller.cluster.schema.provider.RemoteYangTextSourceProvider;
 import org.opendaylight.controller.cluster.schema.provider.impl.YangTextSchemaSourceSerializationProxy;
 import org.opendaylight.netconf.topology.singleton.messages.YangTextSchemaSourceRequest;
@@ -44,7 +43,7 @@ public class ProxyYangTextSourceProvider implements RemoteYangTextSourceProvider
 
     @Override
     public Future<YangTextSchemaSourceSerializationProxy> getYangTextSchemaSource(
-            @Nonnull final SourceIdentifier sourceIdentifier) {
+            final SourceIdentifier sourceIdentifier) {
 
         final Future<Object> scalaFuture = Patterns.ask(masterRef,
                 new YangTextSchemaSourceRequest(sourceIdentifier), actorResponseWaitTime);