Merge branch 'GT-3416_ryanmkurtz_PR-1354_agatti_plugindetailhtml'

This commit is contained in:
Ryan Kurtz 2019-12-19 14:17:27 -05:00
commit ccca215ef8

View file

@ -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("-&gt;");
buffy.append("->");
}
}
return buffy.toString();