Fix Checkstyle violations related to exception handling in elanmanager.
[netvirt.git] / vpnservice / elanmanager / elanmanager-impl / src / main / java / org / opendaylight / netvirt / elan / internal / ElanInterfaceManager.java
index 9edada63bef18f679ca0ba7b296d4f21d38b29be..88b0eb657edf761e5d33b4f26c32505d356d27c9 100644 (file)
@@ -321,7 +321,8 @@ public class ElanInterfaceManager extends AsyncDataTreeChangeListenerBase<ElanIn
                     for (MacEntry macEntry : macEntries) {
                         LOG.debug("removing the  mac-entry:{} present on elanInterface:{}",
                                 macEntry.getMacAddress().getValue(), interfaceName);
-                        InstanceIdentifier<MacTable> elanMacTableId = ElanUtils.getElanMacTableOperationalDataPath(elanName);
+                        InstanceIdentifier<MacTable> elanMacTableId = ElanUtils
+                                .getElanMacTableOperationalDataPath(elanName);
                         Optional<MacTable> existingElanMacTable =
                                 elanUtils.read(broker, LogicalDatastoreType.OPERATIONAL, elanMacTableId);
                         if (!isLastElanInterface && existingElanMacTable.isPresent()) {