From 7410e4d2ae2c9c9efa81de0a7560c5d677b94993 Mon Sep 17 00:00:00 2001 From: Jie Han Date: Fri, 26 Apr 2019 11:57:00 +0800 Subject: [PATCH] Remove duplicate assignment Since it has been in a synchronized block, just remove this line. Change-Id: I3f6159640d76c4027ff97be447351cc8668e57d9 Signed-off-by: Jie Han --- .../opendaylight/netconf/sal/connect/netconf/NetconfDevice.java | 1 - 1 file changed, 1 deletion(-) diff --git a/netconf/sal-netconf-connector/src/main/java/org/opendaylight/netconf/sal/connect/netconf/NetconfDevice.java b/netconf/sal-netconf-connector/src/main/java/org/opendaylight/netconf/sal/connect/netconf/NetconfDevice.java index ede7dddc28..84194ea3a5 100644 --- a/netconf/sal-netconf-connector/src/main/java/org/opendaylight/netconf/sal/connect/netconf/NetconfDevice.java +++ b/netconf/sal-netconf-connector/src/main/java/org/opendaylight/netconf/sal/connect/netconf/NetconfDevice.java @@ -236,7 +236,6 @@ public class NetconfDevice ? BaseSchema.BASE_NETCONF_CTX_WITH_NOTIFICATIONS : BaseSchema.BASE_NETCONF_CTX; this.messageTransformer = new NetconfMessageTransformer(result, true, baseSchema); - updateTransformer(this.messageTransformer); // salFacade.onDeviceConnected has to be called before the notification handler is initialized this.salFacade.onDeviceConnected(result, remoteSessionCapabilities, deviceRpc, this.deviceActionFactory == null ? null : this.deviceActionFactory.createDeviceAction( -- 2.36.6