Reformat asdctool
[sdc.git] / asdctool / src / main / java / org / openecomp / sdc / asdctool / configuration / InternalToolConfiguration.java
index 1b09b2a..c0d65b2 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -17,7 +17,6 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
 package org.openecomp.sdc.asdctool.configuration;
 
 import org.openecomp.sdc.asdctool.impl.internal.tool.DeleteComponentHandler;
@@ -33,13 +32,10 @@ import org.springframework.context.annotation.Import;
 @Configuration
 @Import({DAOSpringConfig.class, CatalogModelSpringConfig.class})
 public class InternalToolConfiguration {
-    
+
     @Bean
-    public DeleteComponentHandler deleteComponentHandler(
-        JanusGraphDao janusGraphDao,
-        NodeTypeOperation nodeTypeOperation,
-        TopologyTemplateOperation topologyTemplateOperation) {
+    public DeleteComponentHandler deleteComponentHandler(JanusGraphDao janusGraphDao, NodeTypeOperation nodeTypeOperation,
+                                                         TopologyTemplateOperation topologyTemplateOperation) {
         return new DeleteComponentHandler(janusGraphDao, nodeTypeOperation, topologyTemplateOperation);
     }
-   
 }