mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-3503 Minor cleanup
This commit is contained in:
parent
d4c7f37fc4
commit
b97b3ec5d5
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue