> @@ -83,7 +85,9 @@ public boolean containerExists(final String containerName) {
>  
>     @Override
>     public Iterable<String> getAllContainerNames() {
> -      return containerToBlobs.keySet();
> +      ArrayList<String> containers = new 
> ArrayList<String>(containerToBlobs.keySet());
> +      Collections.sort(containers);
> +      return containers;

going to update this to sort in LocalBlobStore

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

Reply via email to