mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-23 12:42:30 +00:00
Use StringBuilder to build the menu path string.
This commit is contained in:
parent
0d82026555
commit
fd3b1b28cc
@ -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…
Reference in New Issue
Block a user