Sometimes I put the class name in the comments of methods or class just for referencing. But eclipse does the import automatically and leaves an import statement in the file which causes "unused import" checkstyle errors later. Is there some configuration I can change to avoid eclipse automatically importing when I type the class name in the comments?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
The Checkstyle bug has been fixed now. In Checkstyle config, go Imports > Unused Imports > click Open > make sure
processJavadoc
is checked.Now Checkstyle doesn't warn on this anymore.
People don't agree whether this is a bug or not. Javadoc needs the imports to create appropriate links. I'd say checkstyle should provide an option (and Eclipse maybe too) to change the warning.
There are two relevant bug reports:
Update: The mentioned bug has been fixed in checkstyle. You know have the option to configure the behavior.
If you use the fully-qualified class name in the JavaDoc, Eclipse will not add an import, e.g.
In
checkstyle.xml
, changeto:
This requires version 6.0 of Checkstyle.
Source: https://github.com/jboss/jboss-parent-pom/issues/23