Skip to content

Commit

Permalink
Avoid making a copy of the underlying collection when checking if the…
Browse files Browse the repository at this point in the history
… Itinerary is flagged for deletion.
  • Loading branch information
jtorin committed Oct 24, 2024
1 parent d34f27f commit 48399cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public void removeDeletionFlags(Set<String> removeTags) {
}

public boolean isFlaggedForDeletion() {
return !getSystemNotices().isEmpty();
return !systemNotices.isEmpty();
}

/**
Expand Down

0 comments on commit 48399cc

Please sign in to comment.