remove annotation & clone()

This commit is contained in:
Behrang Fouladi
2023-04-21 10:18:04 +02:00
parent 3ca0ed52ed
commit d4c7f37fc4
@@ -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);
}