> +package org.jclouds.azureblob.domain.internal;
> +
> +import org.jclouds.azureblob.domain.BlobBlockProperties;
> +
> +import com.google.common.base.Objects;
> +
> +/**
> + * Representation of the blocks which compose a Blob
> + */
> +public class BlobBlockPropertiesImpl implements BlobBlockProperties {
> + private final String blockName;
> + private final long contentLength;
> + private final boolean committed;
> +
> + public BlobBlockPropertiesImpl(String blockName, long contentLength,
> boolean committed) {
> + this.blockName = blockName;
`checkNotNull`? Otherwise mark as @Nullable?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/52/files#r5154359