> @@ -79,7 +78,7 @@ public String toString() {
> private static final int CHUNK_SIZE = 1024 * 1024;
>
> private static HashCode hashList(Collection<HashCode> hashList) {
> - List<HashCode> result = Lists.newArrayList();
> + Builder<HashCode> result = ImmutableList.<HashCode>builder();I removed the unnecessary second generic signature which Java infers. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-aws/pull/14/files#r13878908
