mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
Use StringBuilder to build the menu path string.
This commit is contained in:
parent
0d82026555
commit
fd3b1b28cc
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ 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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue