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 3b86434 commit f225f9bCopy full SHA for f225f9b
org.eclipse.m2e.launching/src/org/eclipse/m2e/ui/internal/launch/MavenJRETab.java
@@ -59,7 +59,7 @@ protected IJavaProject getJavaProject() {
59
File pomDir = MavenLaunchDelegate.getPomDirectory(getLaunchConfiguration());
60
return MavenLaunchDelegate.getContainer(pomDir) //
61
.map(IContainer::getProject).filter(IProject::exists) //
62
- .map(JavaCore::create).orElse(null);
+ .map(JavaCore::create).filter(IJavaProject::exists).orElse(null);
63
}
64
65
/**
0 commit comments