public boolean equals()

in azure-functions-java-sdktypes/src/main/java/com/microsoft/azure/functions/sdktype/blob/BlobContainerCacheKey.java [21:27]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof BlobContainerCacheKey)) return false;
        BlobContainerCacheKey that = (BlobContainerCacheKey) o;
        return Objects.equals(containerName, that.containerName) &&
                Objects.equals(connectionEnvVar, that.connectionEnvVar);
    }