> +      // Blob names must NOT start with a "/" since they are relative paths
> +      // they will be automatically removed in case it starts with that
> +      // Get the blob name
> +      // Convert the blob name to it's metadata file name and fetch it
> +      return 
> this.blobProps2BlobMetadata.apply(this.api.getMetadata(this.getUserWorkspace(),
>  container, parentPath,
> +            blobName));
> +   }
> +
> +   @Override
> +   public boolean containerExists(String container) {
> +      return this.api.containerExists(this.getUserWorkspace(), container);
> +   }
> +
> +   @Override
> +   public void deleteContainer(String container) {
> +      // api.deleteContainer(getUserLocation(), container);

Why commented out code? jclouds convention is to never have commented out code 
(at least not without a really good comment saying why it is there).

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

Reply via email to