Another try to fix spring-boot-ls build/test

This commit is contained in:
Kris De Volder
2022-05-10 11:25:08 -07:00
parent ac6c889470
commit c1cb9f68e9
3 changed files with 12 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ public class IndexRoutines {
private static IndexView indexFolder(File folder) {
Indexer indexer = new Indexer();
for (Iterator<File> itr = com.google.common.io.Files.fileTreeTraverser().breadthFirstTraversal(folder)
for (Iterator<File> itr = com.google.common.io.Files.fileTraverser().breadthFirst(folder)
.iterator(); itr.hasNext();) {
File file = itr.next();
if (file.isFile() && file.getName().endsWith(".class")) {