config-manager: final parameters
[controller.git] / opendaylight / config / config-manager / src / main / java / org / opendaylight / controller / config / manager / impl / dynamicmbean / AnnotationsHelper.java
index 6859e4caf3f37dd086a512651146290e8306b53a..e4a427746d45990ca4dcf94dd6066b0c22372a6f 100644 (file)
@@ -46,7 +46,7 @@ public class AnnotationsHelper {
                 // we need to go deeper
                 inspectedClass = inspectedClass.getSuperclass();
                 // no need to go further
-            } catch (NoSuchMethodException e) {
+            } catch (final NoSuchMethodException e) {
                 inspectedClass = Object.class;
             }
         } while (!inspectedClass.equals(Object.class));
@@ -63,7 +63,7 @@ public class AnnotationsHelper {
                 if (annotation != null) {
                     result.add(annotation);
                 }
-            } catch (NoSuchMethodException e) {
+            } catch (final NoSuchMethodException e) {
 
             }
         }