Another update to SerializationUtils update 08/82408/1
authorRobert Varga <robert.varga@pantheon.tech>
Wed, 5 Jun 2019 08:08:05 +0000 (10:08 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Wed, 5 Jun 2019 08:08:05 +0000 (10:08 +0200)
Write-side of serialization changed, this updates our only caller.

Change-Id: Ife1537be690b9d662c3be13558a78349823e379d
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
netconf/netconf-topology-singleton/src/main/java/org/opendaylight/netconf/topology/singleton/messages/NormalizedNodeMessage.java

index 3fdb544dd5d7314790e8de3fb11dfe67ff55e962..711ecacbfa4ea787c89850ce84c5c6e9ad68ceeb 100644 (file)
@@ -48,8 +48,8 @@ public class NormalizedNodeMessage implements Externalizable {
     }
 
     @Override
-    public void readExternal(final ObjectInput in) {
-        SerializationUtils.deserializePathAndNode(in, this, APPLIER);
+    public void readExternal(final ObjectInput in) throws IOException {
+        SerializationUtils.readNodeAndPath(in, this, APPLIER);
     }
 
     @Override