> + }
> +
> + public void listAt() throws Exception {
> + String lexicographicallyBeforeName = name.substring(0, name.length() -
> 1);
> + for (String regionId : api.configuredRegions()) {
> + SwiftObject object = api.objectApiInRegionForContainer(regionId,
> containerName)
> + .listAt(lexicographicallyBeforeName).get(0);
> + assertEquals(object.name(), name);
> + checkObject(object);
> + }
> + }
> +
> + public void updateMetadata() throws Exception {
> + for (String regionId : api.configuredRegions()) {
> + ObjectApi objectApi = api.objectApiInRegionForContainer(regionId,
> containerName);
> + ;
[minor] Spurious `;`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/27/files#r7235109