> + */
> +public class AvailabilityZone {
> +
> + private final String name;
> + private final ZoneState zoneState;
> +
> + @ConstructorProperties({
> + "zoneName" , "zoneState"
> + })
> + protected AvailabilityZone(String name, ZoneState zoneState) {
> + this.name = name;
> + this.zoneState = zoneState;
> + }
> +
> + public String getName() {
> + return this.name;
[minor] I think we use `return name` (i.e. no `this`) elsewhere in jclouds?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/179/files#r6973514