> + if (!options.isDetailed()) {
> + for (StorageMetadata md : contents) {
> + md.getUserMetadata().clear();
> + }
> + }
> + }
> +
> + return new PageSetImpl<StorageMetadata>(contents, marker);
> +
> + }
> +
> + private ContainerNotFoundException cnfe(final String name) {
> + return new ContainerNotFoundException(name, String.format(
> + "container %s not in %s", name,
> + storageStrategy.getAllContainerNames()));
> + }
Inline this method? Or at least rename to `makeContainerNotFoundException` or
so? I know it's "inherited code", but... ;-)
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/220/files#r8053853