> +
> + @Override
> + public Payload next() {
> + if (!hasNext()) {
> + throw new NoSuchElementException();
> + }
> +
> + Payload payload = nextPayload;
> + nextPayload = getNextPayload();
> +
> + return payload;
> + }
> +
> + @Override
> + public void remove() {
> + throw new UnsupportedOperationException();Done. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/501/files#r22498443
