> sync.removeObject(container, key);
> +
> + if (!Strings.isNullOrEmpty(objectManifest)) {
> + removeObjectsWithPrefix(objectManifest);
> + }
> + }
> +
> + private String getObjectManifest(String container, String key) {
> + MutableObjectInfoWithMetadata info = sync.getObjectInfo(container,
> key);
> + return info.getObjectManifest();
> + }
Inline this? It seems only to be used once, and could simply be:
```
String objectManifest = sync.getObjectInfo(container, key).getObjectManifest();
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/123/files#r5913585