> + }
> + }
> +
> + private SecurityGroup createNewSecurityGroup(ZoneAndName in) {
> + checkState(
> + checkNotNull(in, "ZoneSecurityGrioupNamePortsCidrs")
> instanceof ZoneSecurityGroupNamePortsCidrs,
> + "programming error: when issuing get to this cacheloader, you
> need to pass an instance of ZoneSecurityGroupNamePortsCidrs, not %s",
> + in);
> + ZoneSecurityGroupNamePortsCidrs zoneSecurityGroupNamePortsCidrs =
> ZoneSecurityGroupNamePortsCidrs.class.cast(in);
> + return groupCreator.apply(zoneSecurityGroupNamePortsCidrs);
> + }
> +
> + @Override
> + public String toString() {
> + return "returnExistingSecurityGroupInZoneOrCreateAsNeeded()";
> + }
Any reason for this `toString`? E.g. the previous class doesn't have it.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/45/files#r4842340