Fix checkstyle issues to enforce it
[controller.git] / opendaylight / config / config-manager / src / test / java / org / opendaylight / controller / config / manager / impl / AbstractMockedModule.java
index 7681b00d90a509a0710eeda2283e0807aa4e080c..1acf6b2fee0ab2b01f855fdbcca322d67c13647c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ * Copyright (c) 2013, 2017 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
@@ -18,23 +18,24 @@ public abstract class AbstractMockedModule implements Module {
 
     protected abstract AutoCloseable prepareMockedInstance() throws Exception;
 
+    @SuppressWarnings("IllegalCatch")
     public AbstractMockedModule(final DynamicMBeanWithInstance old, final ModuleIdentifier id) {
-        if(old!=null)
+        if (old != null) {
             instance = old.getInstance();
-        else
+        } else {
             try {
                 instance = prepareMockedInstance();
             } catch (final Exception e) {
                 throw new RuntimeException(e);
             }
+        }
 
-        this.id = id==null ? new ModuleIdentifier(getClass().getCanonicalName(), "mock") : id;
+        this.id = id == null ? new ModuleIdentifier(getClass().getCanonicalName(), "mock") : id;
     }
 
-
     @Override
     public boolean canReuse(final Module oldModule) {
-        return instance!=null;
+        return instance != null;
     }
 
     @Override
@@ -50,5 +51,4 @@ public abstract class AbstractMockedModule implements Module {
     public ModuleIdentifier getIdentifier() {
         return id;
     }
-
 }