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 05d57f7 commit 8b8d346Copy full SHA for 8b8d346
src/main/java/com/ibm/cldk/utils/ProjectDirectoryScanner.java
@@ -4,6 +4,7 @@
4
import java.nio.file.Files;
5
import java.nio.file.Path;
6
import java.nio.file.Paths;
7
+import java.util.ArrayList;
8
import java.util.List;
9
import java.util.stream.Collectors;
10
import java.util.stream.Stream;
@@ -37,7 +38,7 @@ public static List<Path> jarFilesStream(String projectPath) throws IOException {
37
38
.collect(Collectors.toList());
39
}
40
- return null;
41
+ return new ArrayList<>();
42
43
44
public static List<Path> sourceFilesStream(String projectPath) throws IOException {
0 commit comments