GP-3503 Minor cleanup

This commit is contained in:
emteere 2023-05-26 19:37:58 +00:00
parent d4c7f37fc4
commit b97b3ec5d5

View file

@ -665,8 +665,7 @@ public class ShowConstantUse extends GhidraScript {
// decompile function
// look for call to this function
// display call
@SuppressWarnings("unchecked")
ArrayList<PcodeOp> localDefUseList = (ArrayList<PcodeOp>) defUseList.clone();
ArrayList<PcodeOp> localDefUseList = new ArrayList<PcodeOp>(defUseList);
this.monitor.setMessage("Analyzing : " + refFunc.getName() + " for refs to " +
addr + ":" + paramIndex);