> + protected Logger logger = Logger.NULL;
> +
> + public IngressRuleToIpPermission() {
> + }
> +
> + @Override
> + public IpPermission apply(IngressRule rule) {
> + IpPermission.Builder builder = IpPermission.builder();
> + builder.ipProtocol(IpProtocol.fromValue(rule.getProtocol()));
> + builder.fromPort(rule.getStartPort());
> + builder.toPort(rule.getEndPort());
> + builder.cidrBlock(rule.getCIDR());
> +
> + return builder.build();
> + }
> +}
new line missing
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/33/files#r4940619