>
> + public ContentMetadataBuilder contentMD5(HashCode contentMD5) {
> + this.contentMD5 = contentMD5;Small change here? With this code, a `null` byte (or HashCode) input will cause `this.contentMD5 = null;` to be invoked. In the previous version, a `null` input would cause nothing to be set. I guess the default value for the field was and is `null`, so the effect is the same? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/384/files#r13215987
