mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-3547 - Patch dir fix - review fixes
This commit is contained in:
parent
87bda2b34d
commit
855955bb3d
3 changed files with 23 additions and 20 deletions
|
@ -87,10 +87,10 @@ public class GhidraLauncher {
|
|||
* the classpath.
|
||||
*
|
||||
* @param pathList The list of paths to add to
|
||||
* @param patchDir The application installation directory
|
||||
* @param patchDir The application installation directory; may be null
|
||||
*/
|
||||
private static void addPatchPaths(List<String> pathList, ResourceFile patchDir) {
|
||||
if (!patchDir.exists()) {
|
||||
if (patchDir == null || !patchDir.exists()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue