in azure-functions-java-sdktypes/src/main/java/com/microsoft/azure/functions/sdktype/blob/BlobClientCacheKey.java [21:28]
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof BlobClientCacheKey)) return false;
BlobClientCacheKey that = (BlobClientCacheKey) o;
return Objects.equals(containerName, that.containerName)
&& Objects.equals(blobName, that.blobName)
&& Objects.equals(envVarForConnection, that.envVarForConnection);
}