mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00
GP-2454: Adding some new default JDK Windows installation locations to
LaunchSupport
This commit is contained in:
parent
aad60ecdd3
commit
c138f53e83
1 changed files with 3 additions and 0 deletions
|
@ -27,8 +27,11 @@ public class WindowsJavaFinder extends JavaFinder {
|
|||
@Override
|
||||
protected List<File> getJavaRootInstallDirs() {
|
||||
List<File> javaRootInstallDirs = new ArrayList<>();
|
||||
javaRootInstallDirs.add(new File("C:\\Java"));
|
||||
javaRootInstallDirs.add(new File("C:\\Program Files\\Java"));
|
||||
javaRootInstallDirs.add(new File("C:\\Program Files\\Amazon Corretto"));
|
||||
javaRootInstallDirs.add(new File("C:\\Program Files\\Eclipse Adoptium"));
|
||||
javaRootInstallDirs.add(new File("C:\\Program Files\\Microsoft"));
|
||||
return javaRootInstallDirs;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue