mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-25 20:15:53 +08:00
GP-3503 Minor cleanup
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user