Reduce the number of problems in aai-common by removing unused imports
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / restcore / search / AAIAbstractGroovyShell.java
index 13f3f05..4a8760e 100644 (file)
@@ -92,11 +92,11 @@ public abstract class AAIAbstractGroovyShell {
      * @return result of graph traversal
      */
     public abstract String executeTraversal(TransactionalGraphEngine engine, String traversal,
-                                            Map<String, Object> params, QueryStyle style, GraphTraversalSource source);
+            Map<String, Object> params, QueryStyle style, GraphTraversalSource source);
 
-    protected Loader getLoader(){
+    protected Loader getLoader() {
         SchemaVersions schemaVersions = (SchemaVersions) SpringContextAware.getBean("schemaVersions");
         return SpringContextAware.getBean(LoaderFactory.class).createLoaderForVersion(ModelType.MOXY,
-            schemaVersions.getDefaultVersion());
+                schemaVersions.getDefaultVersion());
     }
 }