Description
Our code has both imports which are completely unused and imports which are referenced only in JavaDoc (@link and @throws tags). We can
- either remove the first type of imports and change configuration to count reference from JavaDoc as used import,
- or (as recommended in http://checkstyle.sourceforge.net/config_imports.html) remove both types of imports and change our JavaDoc to use full type names of referenced classes.
If we intend to keep as close to existing checkstyle configuration as possible, we should choose second option.