mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-06-04 06:23:45 +08:00
GP-3503 Minor cleanup
This commit is contained in:
@@ -665,8 +665,7 @@ public class ShowConstantUse extends GhidraScript {
|
|||||||
// decompile function
|
// decompile function
|
||||||
// look for call to this function
|
// look for call to this function
|
||||||
// display call
|
// display call
|
||||||
@SuppressWarnings("unchecked")
|
ArrayList<PcodeOp> localDefUseList = new ArrayList<PcodeOp>(defUseList);
|
||||||
ArrayList<PcodeOp> localDefUseList = (ArrayList<PcodeOp>) defUseList.clone();
|
|
||||||
|
|
||||||
this.monitor.setMessage("Analyzing : " + refFunc.getName() + " for refs to " +
|
this.monitor.setMessage("Analyzing : " + refFunc.getName() + " for refs to " +
|
||||||
addr + ":" + paramIndex);
|
addr + ":" + paramIndex);
|
||||||
|
|||||||
Reference in New Issue
Block a user