mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Merge branch 'GT-3416_ryanmkurtz_PR-1354_agatti_plugindetailhtml'
This commit is contained in:
commit
ccca215ef8
1 changed files with 2 additions and 2 deletions
|
@ -220,11 +220,11 @@ class PluginDetailsPanel extends AbstractDetailsPanel {
|
|||
return null;
|
||||
}
|
||||
|
||||
StringBuffer buffy = new StringBuffer();
|
||||
StringBuilder buffy = new StringBuilder();
|
||||
for (int i = 0; i < path.length; i++) {
|
||||
buffy.append(path[i].replaceAll("\\&", "")); // strip off the mnemonic identifier '&'
|
||||
if (i != path.length - 1) {
|
||||
buffy.append("->");
|
||||
buffy.append("->");
|
||||
}
|
||||
}
|
||||
return buffy.toString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue