> + this.metaData = checkNotNull(meta, "meta");
> + this.readLen = this.metaData.getContentLength().intValue();
> +
> + this.nextPayload = getNextPayload();
> + }
> +
> + @Override
> + public boolean hasNext() {
> + return (nextPayload != null);
> + }
> +
> + @Override
> + public Payload next() {
> + Payload payload;
> +
> + payload = nextPayload;
If nextPayload is `null` here, is that OK or an error condition?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/192/files#r7291506