Skip to content

Commit fc49c36

Browse files
committed
FIXED IDEAPLUGIN-15
1 parent 732b7d6 commit fc49c36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/axonframework/intellij/ide/plugin/publisher/DefaultEventPublisherProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public boolean value(PsiElement psiElement) {
165165

166166

167167
private void cleanClosedProjects() {
168-
for (Project project : publisherMethodsPerProject.keySet()) {
168+
for (Project project : Collections.list(publisherMethodsPerProject.keys())) {
169169
if (!project.isOpen()) {
170170
publisherMethodsPerProject.remove(project);
171171
}

0 commit comments

Comments
 (0)