mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-04 18:29:37 +02:00
GP-2974: Fixing warnings
This commit is contained in:
parent
113156a19f
commit
7fa3389119
662 changed files with 2198 additions and 2216 deletions
|
@ -149,7 +149,7 @@ public class DataReferenceGraph extends AttributedGraph {
|
|||
.getReferenceIteratorTo()) {
|
||||
if (!ref.getReferenceType().isFlow()) {
|
||||
Address nextAddress = processReference(Directions.TO_ONLY, startVertex, ref);
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
if (nextAddress != null) {
|
||||
/*
|
||||
* maxDepth > 1 -> subtract 1 to count this level, and keep going
|
||||
|
@ -173,7 +173,7 @@ public class DataReferenceGraph extends AttributedGraph {
|
|||
.getReferencesFrom()) {
|
||||
if (!ref.getReferenceType().isFlow()) {
|
||||
Address nextAddress = processReference(Directions.FROM_ONLY, startVertex, ref);
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
if (nextAddress != null) {
|
||||
/*
|
||||
* maxDepth > 1 -> subtract 1 to count this level, and keep going
|
||||
|
|
|
@ -114,7 +114,7 @@ public class DataReferenceGraphTask extends Task {
|
|||
|
||||
try {
|
||||
for (CodeUnit unit : program.getListing().getCodeUnits(addresses, true)) {
|
||||
monitor.checkCanceled();
|
||||
monitor.checkCancelled();
|
||||
AttributedVertex centerVertex =
|
||||
graph.graphFrom(unit.getAddress(), direction, monitor);
|
||||
/* TODO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue