config-manager: final parameters
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / osgi / ExtensibleBundleTracker.java
index 6969a3b6570435248ecd03fb3fb48bdc7dc9d8ce..5841acfde8683541efdb3de605f548627a0593bc 100644 (file)
@@ -80,7 +80,7 @@ public final class ExtensibleBundleTracker<T> extends BundleTracker<Future<T>> {
                 forEachAdditionalBundle(tracker -> tracker.addingBundle(bundle, event));
                 LOG.trace("AddingBundle for {} and event {} finished successfully",bundle,event);
                 return primaryTrackerRetVal;
-            } catch (Exception e) {
+            } catch (final Exception e) {
                 LOG.error("Failed to add bundle {}", bundle, e);
                 throw e;
             }
@@ -106,7 +106,7 @@ public final class ExtensibleBundleTracker<T> extends BundleTracker<Future<T>> {
             primaryTracker.removedBundle(bundle, event, object.get());
             forEachAdditionalBundle(tracker -> tracker.removedBundle(bundle, event, null));
             LOG.trace("Removed bundle event for {} finished successfully.",bundle);
-        } catch (Exception e) {
+        } catch (final Exception e) {
             LOG.error("Failed to remove bundle {}", bundle, e);
         }
     }