mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GT-3354: Code review fixes
This commit is contained in:
parent
2a64cf2a77
commit
e53e4c99fc
5 changed files with 34 additions and 10 deletions
|
@ -163,7 +163,7 @@ class ImportGhidraToolsDialog extends DialogComponentProvider {
|
|||
Set<ToolTemplate> extraTools = ToolUtils.getExtraApplicationTools();
|
||||
|
||||
Stream<String> defaultToolNames = defaultTools.stream().map(ToolTemplate::getPath);
|
||||
Stream<String> extraToolNames = extraTools.parallelStream().map(ToolTemplate::getPath);
|
||||
Stream<String> extraToolNames = extraTools.stream().map(ToolTemplate::getPath);
|
||||
|
||||
int elementCount = defaultTools.size() + extraTools.size();
|
||||
tools = new String[elementCount];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue