> @@ -189,6 +189,15 @@ public void deleteContainer(String container) {
> deletePathAndEnsureGone(container);
> }
>
> + @Override
> + public boolean deleteContainerIfEmpty(String container) {
> + try {
> + return deleteAndVerifyContainerGone(container);
Not a stupid question; this method has a confusing name and some duplicated
wrappers. The method should return return false if not empty and I added some
Javadoc for this. I can dike out some of the cruft in a subsequent commit.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/451/files#r15262038