diff options
author | Marek Gradzki <mgradzki@cisco.com> | 2017-11-22 11:17:15 +0100 |
---|---|---|
committer | Marek Gradzki <mgradzki@cisco.com> | 2017-11-22 11:17:17 +0100 |
commit | 0827063002d7fc50b787f1e5f6bbbbdc09802787 (patch) | |
tree | d3eb2daea6d3ef1491c8f6be88c7b20cdad8f30d /infra/northbound/netconf/src/main | |
parent | 564ba4dc10dcde369ee4f76055c1bd8ab6cfbad9 (diff) |
Add missing @Override annotations
Fix isses reported by Sonar
thanks to IntelliJ's code inspection.
Change-Id: Ief7b4307d4b90e107f010d7feaa307776afaf947
Signed-off-by: Marek Gradzki <mgradzki@cisco.com>
Diffstat (limited to 'infra/northbound/netconf/src/main')
-rw-r--r-- | infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfReadersModule.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfReadersModule.java b/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfReadersModule.java index 88d7a1c02..377ce6e3c 100644 --- a/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfReadersModule.java +++ b/infra/northbound/netconf/src/main/java/io/fd/honeycomb/northbound/netconf/NetconfReadersModule.java @@ -32,6 +32,7 @@ public class NetconfReadersModule extends NorthboundAbstractModule<NetconfConfig super(new NetconfConfigurationModule(), NetconfConfiguration.class); } + @Override protected void configure() { if (!getConfiguration().isNetconfEnabled()) { LOG.debug("NETCONF Northbound disabled, skipping readers initialization"); |