mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 02:39:44 +02:00
GP-2974: Fixing warnings
This commit is contained in:
parent
113156a19f
commit
7fa3389119
662 changed files with 2198 additions and 2216 deletions
|
@ -457,7 +457,7 @@ public class WindowsResourceReference extends GhidraScript {
|
|||
keys = constLocs.keySet();
|
||||
locIter = keys.iterator();
|
||||
while (locIter.hasNext()) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
|
||||
Address loc = locIter.next();
|
||||
Instruction instr = currentProgram.getListing().getInstructionAt(loc);
|
||||
|
@ -510,7 +510,7 @@ public class WindowsResourceReference extends GhidraScript {
|
|||
locIter = keys.iterator();
|
||||
//Iterate though the set of address locations
|
||||
while (locIter.hasNext()) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
|
||||
Address loc = locIter.next();
|
||||
Instruction instr = currentProgram.getListing().getInstructionAt(loc);
|
||||
|
@ -553,7 +553,7 @@ public class WindowsResourceReference extends GhidraScript {
|
|||
|
||||
// Search each table
|
||||
while (siter.hasNext()) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
|
||||
Symbol sym = siter.next();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue