GP-3224 Remove full symbol check from Rename actions

This commit is contained in:
caheckman 2023-03-21 13:02:22 -04:00
parent cc35d57933
commit 79e5465160
3 changed files with 2 additions and 16 deletions

View file

@ -425,16 +425,6 @@ public class LocalSymbolMap {
return (HighParam) paramSymbols[i].getHighVariable();
}
public boolean containsVariableWithName(String name) {
Collection<HighSymbol> values = symbolMap.values();
for (HighSymbol sym : values) {
if (sym.getName().equals(name)) {
return true;
}
}
return false;
}
protected HighSymbol newMappedSymbol(long id, String nm, DataType dt, VariableStorage store,
Address pcaddr, int slot) {
if (id == 0) {