Merge branch 'GP-832_ryanmkurtz_PR-2839_tniessen_propogate-task-monitor'

This commit is contained in:
Ryan Kurtz
2021-04-02 12:58:33 -04:00
2 changed files with 2 additions and 2 deletions
@@ -36,7 +36,7 @@ public class PropagateConstantReferences extends GhidraScript {
public void run() throws Exception {
long numInstructions = currentProgram.getListing().getNumInstructions();
monitor.initialize((int) (numInstructions));
monitor.setMessage("Constant Propogation Markup");
monitor.setMessage("Constant Propagation Markup");
// set up the address set to restrict processing
AddressSet restrictedSet =
@@ -57,7 +57,7 @@ public class PropagateX86ConstantReferences extends GhidraScript {
public void run() throws Exception {
long numInstructions = currentProgram.getListing().getNumInstructions();
monitor.initialize((int) (numInstructions));
monitor.setMessage("Constant Propogation Markup");
monitor.setMessage("Constant Propagation Markup");
// set up the address set to restrict processing
AddressSet restrictedSet = new AddressSet(currentSelection);