> @@ -72,7 +72,12 @@ public void close() {
>        closeQuietly(closer);
>     }
>  
> -   /**
> +    @Override
> +    public boolean isOpen() {
> +        return closer.getState() == Closer.State.OPEN;

Static import `Closer.State.*`? Then this can just be 
```
return closer.getState() == OPEN;
```
which reads a little easier?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/32/files#r4714164

Reply via email to