> @@ -137,7 +141,8 @@ public URI apply(String from) {
> public ListenableFuture<Void> deletePath(String path) {
> if (path.indexOf('/') == path.length() - 1) {
> // chop off the trailing slash
> - return
> Futures.transform(blobStore.deleteContainerIfEmpty(path.substring(0,
> path.length() - 1)),
> + return Futures.transform(immediateFuture(blobStore
> + .deleteContainerIfEmpty(path.substring(0, path.length() -
> 1))),
[minor] Move to previous line or wrap at `path.substring`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/220/files#r13571614