> ip = floatingIpApi.create();
> + if(ip == null){
> + throw new InsufficientResourcesException();
> + }
Please use a 3-space indent and spaces around the condition:
```
if (ip == null) {
throw new...
}
```
Also, if the IRE allows you to pass a message, please pass one, e.g. "Unable to
create floating IP for node + ..." or so?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/425/files#r14383367
