> this.containerCount = containerCount; > this.objectCount = objectCount; > this.bytesUsed = bytesUsed; > - this.metadata = checkNotNull(metadata, "metadata"); > + this.metadata = metadata == null ? ImmutableMap.<String, String> of() > : checkNotNull(metadata, "metadata"); > + this.headers = headers == null ? ImmutableMultimap.<String, String> > of() : checkNotNull(headers, "headers");
Don't need the `checkNotNull` at the end there (for both of these)? ;-) --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/107/files#r13035147
