You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jclouds.apache.org by Andrew Phillips <no...@github.com> on 2013/09/09 15:04:06 UTC

Re: [jclouds] Remove BlobStoreContext.getAsyncBlobStore (#126)

>        checkNotNull(container, "container");
>  
>        String name = blobName.apply(blob);
>        if (name.indexOf('/') > 0) {
> -         return asyncBlobStore.createDirectory(container, parseDirectoryFromPath(name));
> -      } else {
> -         return Futures.immediateFuture(null);
> +         blobStore.createDirectory(container, parseDirectoryFromPath(name));

Missing a `return` here? Sorry, not checked the remainder of the code ;-)

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