Skip to content

Commit

Permalink
fixup! fix: Xplan validation erroneously throws warning on missing ob…
Browse files Browse the repository at this point in the history
…jects
  • Loading branch information
emanuelaepure10 committed Jul 10, 2024
1 parent ed3f339 commit ae3e7d8
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,8 @@ public Boolean compute(LoopBundle<Vertex> loop) {
result.add(ref);
}
else if (!vtx.getId().equals(associated.getId())) {
Iterable<Vertex> referers = associated.getVertices(Direction.IN);
Set<String> ids = new HashSet<>();

for (Vertex referer : referers) {
for (Vertex referer : associated.getVertices(Direction.IN)) {
Object ident = referer.getId();
if (ident != null) {
ids.add(ident.toString());
Expand Down

0 comments on commit ae3e7d8

Please sign in to comment.