in src/main/java/org/apache/nifi/flow/VersionedFlowCoordinates.java [102:118]
public boolean equals(final Object obj) {
if (obj == null) {
return false;
}
if (obj == this) {
return true;
}
if (!(obj instanceof final VersionedFlowCoordinates other)) {
return false;
}
return Objects.equals(storageLocation, other.storageLocation)
&& Objects.equals(branch, other.branch)
&& Objects.equals(bucketId, other.bucketId)
&& Objects.equals(flowId, other.flowId)
&& Objects.equals(version, other.version);
}