Fix checkstyle reported by odlparent-3.0.0
[controller.git] / opendaylight / config / config-manager-facade-xml / src / main / java / org / opendaylight / controller / config / facade / xml / strategy / DeleteEditConfigStrategy.java
index 08d9d21cdd80ee98dc416582f7c7879abb4e5e74..c1a1fd47a6949bdc67376285f1fcc0aa611a4187 100644 (file)
@@ -24,8 +24,10 @@ public class DeleteEditConfigStrategy extends AbstractEditConfigStrategy {
     private static final Logger LOG = LoggerFactory.getLogger(DeleteEditConfigStrategy.class);
 
     @Override
-    void handleMissingInstance(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta,
-            String module, String instance, ServiceRegistryWrapper services) throws ConfigHandlingException {
+    void handleMissingInstance(final Map<String, AttributeConfigElement> configuration,
+            final ConfigTransactionClient ta, final String module, final String instance,
+            final ServiceRegistryWrapper services)
+                    throws ConfigHandlingException {
         throw new ConfigHandlingException(
                 String.format("Unable to delete %s : %s , ServiceInstance not found", module, instance),
                 DocumentedException.ErrorType.APPLICATION, DocumentedException.ErrorTag.OPERATION_FAILED,
@@ -33,14 +35,14 @@ public class DeleteEditConfigStrategy extends AbstractEditConfigStrategy {
     }
 
     @Override
-    void executeStrategy(Map<String, AttributeConfigElement> configuration, ConfigTransactionClient ta, ObjectName on,
-            ServiceRegistryWrapper services) throws ConfigHandlingException {
+    void executeStrategy(final Map<String, AttributeConfigElement> configuration, final ConfigTransactionClient ta,
+            final ObjectName on, final ServiceRegistryWrapper services) throws ConfigHandlingException {
         try {
             ta.destroyModule(on);
             LOG.debug("ServiceInstance {} deleted successfully", on);
         } catch (InstanceNotFoundException e) {
             throw new ConfigHandlingException(
-                    String.format("Unable to delete %s because of exception %s" + on, e.getMessage()),
+                    String.format("Unable to delete %s because of exception %s" + on, e.getMessage()), e,
                     DocumentedException.ErrorType.APPLICATION, DocumentedException.ErrorTag.OPERATION_FAILED,
                     DocumentedException.ErrorSeverity.ERROR);
         }