mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 02:09:44 +02:00
GP-3623 - Extensions - Added an extension-specific class loader; moved ExtensionUtils to Generic
This commit is contained in:
parent
80d92aa32f
commit
0a520b08bd
30 changed files with 1079 additions and 731 deletions
|
@ -17,6 +17,7 @@ package utility.application;
|
|||
|
||||
import java.io.FileNotFoundException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
|
||||
import generic.jar.ResourceFile;
|
||||
import ghidra.framework.ApplicationProperties;
|
||||
|
@ -30,7 +31,7 @@ public class DummyApplicationLayout extends ApplicationLayout {
|
|||
|
||||
/**
|
||||
* Constructs a new dummy application layout object.
|
||||
*
|
||||
* @param name the application name
|
||||
* @throws FileNotFoundException if there was a problem getting a user directory.
|
||||
*/
|
||||
public DummyApplicationLayout(String name) throws FileNotFoundException {
|
||||
|
@ -48,5 +49,7 @@ public class DummyApplicationLayout extends ApplicationLayout {
|
|||
|
||||
// User directories
|
||||
userTempDir = ApplicationUtilities.getDefaultUserTempDir(applicationProperties);
|
||||
|
||||
extensionInstallationDirs = Collections.emptyList();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue