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 8194876 commit 5c87527Copy full SHA for 5c87527
org.eclipse.jdt.launching/launching/org/eclipse/jdt/internal/launching/DetectVMInstallationsJob.java
@@ -133,6 +133,7 @@ private Collection<File> computeCandidateVMs(StandardVMType standardType) {
133
rootDirectories.add(new File("/usr/lib/jvm")); //$NON-NLS-1$
134
}
135
rootDirectories.add(new File(System.getProperty("user.home"), ".sdkman/candidates/java")); //$NON-NLS-1$ //$NON-NLS-2$
136
+ rootDirectories.add(new File(System.getProperty("user.home"), ".local/share/mise/installs/java")); //$NON-NLS-1$ //$NON-NLS-2$
137
138
Set<File> directories = rootDirectories.stream().filter(File::isDirectory)
139
.map(dir -> dir.listFiles(File::isDirectory))
0 commit comments