> @Override
> public PayloadBlobBuilder contentMD5(byte[] md5) {
> + return contentMD5(md5 == null ? null : HashCode.fromBytes(md5));
> + }
> +
> + @Override
> + public PayloadBlobBuilder contentMD5(HashCode md5) {
Do we want to accept a `null` input here? If so, mark as `@Nullable`? But where
would we realistically expect users to be passing null here (or to the
deprecated version above)?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/384/files#r13215961