mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-20 10:37:27 +08:00
remove annotation & clone()
This commit is contained in:
@@ -868,8 +868,7 @@ public class ShowConstantUse extends GhidraScript {
|
||||
return;
|
||||
case PcodeOp.MULTIEQUAL:
|
||||
for (int i = 0; i < def.getNumInputs(); i++) {
|
||||
@SuppressWarnings("unchecked")
|
||||
ArrayList<PcodeOp> splitUseList = (ArrayList<PcodeOp>) defUseList.clone();
|
||||
ArrayList<PcodeOp> splitUseList = new ArrayList<>(defUseList);
|
||||
followToParam(constUse, splitUseList, highFunction, def.getInput(i), funcList,
|
||||
doneSet);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user