mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 10:19:23 +02:00
GP-2974: Fixing warnings
This commit is contained in:
parent
113156a19f
commit
7fa3389119
662 changed files with 2198 additions and 2216 deletions
|
@ -69,7 +69,7 @@ public class ExtractELFDebugFilesScript extends GhidraScript {
|
|||
void processDir(GFile dir, File destDir) throws IOException, CancelledException {
|
||||
List<GFile> listing = dir.getListing();
|
||||
for (GFile file : listing) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
if (file.isDirectory()) {
|
||||
continue;
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ public class ExtractELFDebugFilesScript extends GhidraScript {
|
|||
}
|
||||
}
|
||||
for (GFile file : listing) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
if (file.isDirectory()) {
|
||||
processDir(file, destDir);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue