mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GT-2623 fixing GhidraJarMode
This commit is contained in:
parent
64deecced9
commit
e8f3694eb9
2 changed files with 34 additions and 31 deletions
|
@ -29,10 +29,10 @@ public class GClassLoader extends URLClassLoader {
|
|||
}
|
||||
|
||||
private static URL[] findUrls(List<File> moduleDirs) {
|
||||
List<URL> urls = new ArrayList<URL>();
|
||||
List<URL> urls = new ArrayList<>();
|
||||
|
||||
for (File moduleDir : moduleDirs) {
|
||||
File binDir = new File(moduleDir, "bin/");
|
||||
File binDir = new File(moduleDir, "bin/main");
|
||||
if (binDir.exists()) {
|
||||
addFileURL(urls, binDir);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue