> @@ -269,6 +313,15 @@ public boolean apply(final VirtualMachine input) {
> };
> }
>
> + private static Predicate<Network<?>> networkId(final String id) {
> + return new Predicate<Network<?>>() {
> + @Override
> + public boolean apply(final Network<?> input) {
> + return Integer.valueOf(id).equals(input.getId());
Rather than calling `Integer.valueOf(id)` every time, make it a `final`
variable in the method?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/47/files#r8755870