GT-3354: Code review fixes

This commit is contained in:
Ryan Kurtz 2019-12-09 09:06:33 -05:00
parent 2a64cf2a77
commit e53e4c99fc
5 changed files with 34 additions and 10 deletions

View file

@ -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];