Yes! With the following in checkstyle.xml, running against core, on the branch
I did the cleanup on:
```xml
<module name="UnusedImports">
<property name="processJavadoc" value="true" />
</module>
```
...I get the following:
```xml
<file
name="/Users/abayer/IdeaProjects/incubator-jclouds/core/src/main/java/org/jclouds/Constants.java">
<error line="19" column="8" severity="warning" message="Unused import -
java.net.Proxy."
source="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck"/>
</file>
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/57#issuecomment-20620353