> +         return (nextPayload != null);
> +      }
> +
> +      @Override
> +      public Payload next() {
> +         Payload payload;
> +
> +         payload = nextPayload;
> +         nextPayload = getNextPayload();
> +
> +         return payload;
> +      }
> +
> +      @Override
> +      public void remove() {
> +         throw new UnsupportedOperationException();

Something like `throw new 
UnsupportedOperationException("PayloadIterator.remove() not supported");`?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/192/files#r8179878

Reply via email to