data: refresh with java imports

* coati regards import dependencies when refreshing a project
This commit is contained in:
malte_langkabel
2016-08-19 13:48:02 +02:00
parent 9255d45b94
commit e508741c9a
3 changed files with 94 additions and 25 deletions
+2 -2
View File
@@ -49,8 +49,8 @@ public class JavaIndexer
}
CompilationUnit cu = JavaParser.parse(new StringReader(fileContent), true);
// JavaAstVisitor astVisitor = new JavaAstVisitor(address, filePath, new FileContent(fileContent), typeSolver);
JavaAstVisitor astVisitor = new ASTDumper(address, filePath, new FileContent(fileContent), typeSolver);
JavaAstVisitor astVisitor = new JavaAstVisitor(address, filePath, new FileContent(fileContent), typeSolver);
// JavaAstVisitor astVisitor = new ASTDumper(address, filePath, new FileContent(fileContent), typeSolver);
cu.accept(astVisitor, null);
}
catch (ParseException e)