> - public String
> apply(String input) {
> -
> checkArgument(isCidrFormat(input),
> -
> "input %s is not a valid CIDR",
> -
> input);
> - return input;
> - }
> - }));
> + new Function<String, String>() {
> + @Override
> + public String apply(String input) {
> + checkArgument(isCidrFormat(input),
> + "input %s is not a valid CIDR",
> + input);
> + return input;
> + }
> + }));Makes sense to me. Will do. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/145/files#r6250171
