> +/**
> + * @author vitaly.rudenya
> + */
> +@Singleton
> +public class JoyentBlobStore extends BaseBlobStore {
> +
> + private final JoyentBlobClient sync;
> + private final ListBlobsResponseToResourceList
> listBlobsResponseToResourceList;
> +
> + @Inject
> + JoyentBlobStore(BlobStoreContext context, BlobUtils blobUtils,
> Supplier<Location> defaultLocation,
> + @Memoized Supplier<Set<? extends Location>> locations,
> JoyentBlobClient sync,
> + ListBlobsResponseToResourceList
> listBlobsResponseToResourceList) {
> + super(context, blobUtils, defaultLocation, locations);
> + this.sync = checkNotNull(sync, "sync");
> + this.listBlobsResponseToResourceList = listBlobsResponseToResourceList;
Also `checkNotNull` the `listBlobsResponseToResourceList`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/30/files#r7260109