>
> - 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();
No longer need the `null` checks here if they're not nullable? And if the _are_
still nullable, put the annotations back?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/191/files#r7234687