GP-2974: Fixing warnings

This commit is contained in:
Ryan Kurtz 2023-04-26 08:03:57 -04:00
parent 113156a19f
commit 7fa3389119
662 changed files with 2198 additions and 2216 deletions

View file

@ -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

View file

@ -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