> +import org.jclouds.azureblob.domain.ListBlobBlocksResponse;
> +
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +
> +import java.util.List;
> +import com.google.common.base.Objects;
> +
> +/**
> + * Represents the list of blocks which compose a blob
> + */
> +public class ListBlobBlocksResponseImpl implements ListBlobBlocksResponse {
> +   private final List<BlobBlockProperties> blocks;
> +
> +   public ListBlobBlocksResponseImpl(List<BlobBlockProperties> blocks) {
> +      this.blocks = checkNotNull(blocks, "bloc`k list must not be null");

extraneous backtick

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/52/files#r5101612

Reply via email to