We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39045e6 commit 99afcceCopy full SHA for 99afcce
adapter/src/main/kotlin/org/javacs/ktda/jdi/launch/JDILauncher.kt
@@ -79,6 +79,7 @@ class JDILauncher(
79
80
private fun sourcesRootsOf(projectRoot: Path): Set<Path> = projectRoot.resolve("src")
81
.let(Files::list) // main, test
82
+ .filter { Files.isDirectory(it) }
83
.flatMap(Files::list) // kotlin, java
84
.filter { Files.isDirectory(it) }
85
.collect(Collectors.toSet())
0 commit comments