>  
> -   protected PaginatedCollection(@Nullable Iterable<T> resources, @Nullable 
> Iterable<Link> links, int totalEntries) {
> +   protected PaginatedCollection(Iterable<T> resources, Iterable<Link> 
> links, @Nullable Integer totalEntries) {
>        this.resources = resources != null ? resources : ImmutableSet.<T> of();
>        this.links = links != null ? links : ImmutableSet.<Link> of();

Good catch. AFAICT those are still possibly nullable and should be annotated as 
such. I'll fix it.

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

Reply via email to