Bump upstreams
[netconf.git] / plugins / netconf-client-mdsal / src / main / java / org / opendaylight / netconf / client / mdsal / api / RemoteDeviceId.java
index 2ae1c48a09f5d060659dc06488ecea9452bb5f88..8ac1d3e75aef15a35611fa36c30e7863229ea17d 100644 (file)
@@ -23,7 +23,7 @@ public record RemoteDeviceId(@NonNull String name, @NonNull InetSocketAddress ad
 
     public @NonNull Host host() {
         final var addr = address.getAddress();
-        return addr != null ? new Host(IetfInetUtil.INSTANCE.ipAddressFor(addr))
+        return addr != null ? new Host(IetfInetUtil.ipAddressFor(addr))
             : new Host(new DomainName(address.getHostString()));
     }
 }