We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5755ef commit db3b7cdCopy full SHA for db3b7cd
src/main/java/com/checkmarx/intellij/tool/window/actions/selection/ProjectSelectionGroup.java
@@ -72,7 +72,8 @@ private void populate(boolean inherit) {
72
setEnabled(false);
73
CompletableFuture.supplyAsync((Supplier<List<com.checkmarx.ast.project.Project>>) () -> {
74
try {
75
- return com.checkmarx.intellij.commands.Project.getList();
+ List<com.checkmarx.ast.project.Project> list = com.checkmarx.intellij.commands.Project.getList();
76
+ return list != null ? list : Collections.emptyList();
77
} catch (Exception e) {
78
LOGGER.warn(e);
79
}
0 commit comments