Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / transforms / XmlFormatTransformerTest.java
index 6d6ae19..0169939 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aai.transforms;
 
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.core.Is.is;
+
+import java.io.IOException;
+
 import org.junit.Before;
 import org.junit.Test;
 import org.onap.aai.PayloadUtil;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import java.io.IOException;
-
-import static org.hamcrest.MatcherAssert.assertThat;
-import static org.hamcrest.core.Is.is;
-
 public class XmlFormatTransformerTest {
 
     private static final Logger LOGGER = LoggerFactory.getLogger(XmlFormatTransformerTest.class);
@@ -37,7 +38,7 @@ public class XmlFormatTransformerTest {
     private XmlFormatTransformer xmlFormatTransformer;
 
     @Before
-    public void setup(){
+    public void setup() {
         this.xmlFormatTransformer = new XmlFormatTransformer();
     }