Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / config / XmlFormatTransformerConfiguration.java
index 0c83c2b..b945d85 100644 (file)
@@ -17,6 +17,7 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.config;
 
 import org.onap.aai.transforms.XmlFormatTransformer;
@@ -27,7 +28,7 @@ import org.springframework.context.annotation.Configuration;
 public class XmlFormatTransformerConfiguration {
 
     @Bean
-    public XmlFormatTransformer xmlFormatTransformer(){
+    public XmlFormatTransformer xmlFormatTransformer() {
         return new XmlFormatTransformer();
     }
 }