mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-23 13:16:48 +08:00
Merge remote-tracking branch 'origin/patch'
This commit is contained in:
@@ -404,11 +404,8 @@ public class GhidraLauncher {
|
||||
if (external1 && external2) {
|
||||
return nameComparison;
|
||||
}
|
||||
if (external1) {
|
||||
return -1;
|
||||
}
|
||||
if (external2) {
|
||||
return 1;
|
||||
if (external1 || external2) {
|
||||
return Boolean.compare(external1, external2);
|
||||
}
|
||||
|
||||
// Now handle modules that are internal to the Ghidra installation.
|
||||
|
||||
Reference in New Issue
Block a user