Migrate YangInstanceIdentifier.EMPTY users
[netconf.git] / netconf / netconf-topology-singleton / src / main / java / org / opendaylight / netconf / topology / singleton / impl / ProxyDOMRpcService.java
index 8936b110c069452d3b59b1f68b54eb7b0be5284a..5c5fd4a77e56a31d942ae9a36682fe8351a9dfea 100644 (file)
@@ -57,7 +57,7 @@ public class ProxyDOMRpcService implements DOMRpcService {
         LOG.trace("{}: Rpc operation invoked with schema type: {} and node: {}.", id, type, input);
 
         final NormalizedNodeMessage normalizedNodeMessage = input != null
-                ? new NormalizedNodeMessage(YangInstanceIdentifier.EMPTY, input) : null;
+                ? new NormalizedNodeMessage(YangInstanceIdentifier.empty(), input) : null;
         final Future<Object> scalaFuture = Patterns.ask(masterActorRef,
                 new InvokeRpcMessage(new SchemaPathMessage(type), normalizedNodeMessage), actorResponseWaitTime);