re base code
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / migration / scanner / ClassScanner.java
index c50cae0..38cf068 100644 (file)
@@ -1,16 +1,12 @@
 package org.openecomp.sdc.asdctool.migration.scanner;
 
+import org.apache.commons.io.FileUtils;
+import org.openecomp.sdc.asdctool.migration.core.MigrationException;
+
 import java.io.File;
 import java.lang.reflect.Modifier;
 import java.net.URL;
-import java.util.ArrayList;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.List;
-import java.util.Optional;
-
-import org.apache.commons.io.FileUtils;
-import org.openecomp.sdc.asdctool.migration.core.MigrationException;
+import java.util.*;
 
 /**
  * scan and instantiate classes of given type in the class path
@@ -76,6 +72,4 @@ public class ClassScanner {
         String classes = "classes.";
         return asPackage.substring(asPackage.indexOf(classes) + classes.length());
     }
-
-
 }