From 34efbc5f1c63fbb5052021dc95b2d3f4bafbb64f Mon Sep 17 00:00:00 2001 From: ghidra007 Date: Wed, 12 Jan 2022 17:11:43 +0000 Subject: [PATCH] GP-1671 fixed space typo in createShortenedTemplateNames causing symbol.setName stack trace. --- .../ghidra_scripts/classrecovery/ExtendedFlatProgramAPI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ghidra/Features/Decompiler/ghidra_scripts/classrecovery/ExtendedFlatProgramAPI.java b/Ghidra/Features/Decompiler/ghidra_scripts/classrecovery/ExtendedFlatProgramAPI.java index c2791db137..9f81ee502f 100644 --- a/Ghidra/Features/Decompiler/ghidra_scripts/classrecovery/ExtendedFlatProgramAPI.java +++ b/Ghidra/Features/Decompiler/ghidra_scripts/classrecovery/ExtendedFlatProgramAPI.java @@ -1333,7 +1333,7 @@ public class ExtendedFlatProgramAPI extends FlatProgramAPI { commaIndex--; } - String shortenedName = className.substring(0, nextComma) + " ...>"; + String shortenedName = className.substring(0, nextComma) + "...>"; return shortenedName; }