Skip to content

Commit

Permalink
NIFI-12245: Removed null check that is no longer necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
markap14 committed Oct 20, 2023
1 parent d03feb7 commit f6214ce
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -503,10 +503,6 @@ private String determineRegistryId(final VersionedFlowCoordinates coordinates) {
}

final String location = coordinates.getStorageLocation();
if (location == null) {
return null;
}

for (final FlowRegistryClientNode flowRegistryClientNode : context.getFlowManager().getAllFlowRegistryClients()) {
final boolean locationApplicable;
try {
Expand Down

0 comments on commit f6214ce

Please sign in to comment.