> +import com.google.common.base.Optional;
> +import com.google.inject.Inject;
> +import org.jclouds.cloudsigma2.options.PaginationOptions;
> +import org.jclouds.collect.IterableWithMarker;
> +
> +import java.util.Iterator;
> +
> +/**
> + * @author Vladimir Shevchenko
> + */
> +public class PaginatedCollection<T> extends IterableWithMarker<T> {
> +
> +    private Iterable<T> objects;
> +    private PaginationOptions paginationOptions;
> +
> +    @Inject

This constructor is manually called from the parsers and there is no argument 
here that is injected by Guice; remove the `@Inject` annotation.

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

Reply via email to