GP-1671 fixed space typo in createShortenedTemplateNames causing

symbol.setName stack trace.
This commit is contained in:
ghidra007 2022-01-12 17:11:43 +00:00
parent 8546ff5274
commit 34efbc5f1c

View file

@ -1333,7 +1333,7 @@ public class ExtendedFlatProgramAPI extends FlatProgramAPI {
commaIndex--;
}
String shortenedName = className.substring(0, nextComma) + " ...>";
String shortenedName = className.substring(0, nextComma) + "...>";
return shortenedName;
}