> @@ -213,17 +226,12 @@ public AtmosObject newObject() {
> public ListenableFuture<Boolean> pathExists(final String path) {
> if (path.indexOf('/') == path.length() - 1) {
> // chop off the trailing slash
> - return blobStore.containerExists(path.substring(0, path.length() -
> 1));
> + return immediateFuture(blobStore.containerExists(path.substring(0,
[minor] Wrap at `path.substring`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/220/files#r13571637