> + if (getClass() != obj.getClass())
> + return false;
> + TreeHash other = (TreeHash) obj;
> + return Objects.equal(this.treeHash, other.treeHash) &&
> Objects.equal(this.linearHash, other.linearHash);
> + }
> +
> + @Override
> + public String toString() {
> + return "TreeHash [treeHash=" + treeHash + ", linearHash=" + linearHash
> + "]";
> + }
> +
> + public static class Hasher {
> + private static final int CHUNK_SIZE = 1024 * 1024;
> +
> + private static HashCode hashList(Collection<HashCode> hashList) {
> + hashList = Lists.newArrayList(hashList);
Necessary to copy this with `newArrayList`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/11/files#r13835183