java - intellij - checkstyle xml
Java-Checkstyle-Tiros redundantes (2)
Experimenté lo mismo con IntelliJ IDEA. Lo que hice fue cambiar a la versión anterior del complemento checkstyle que se puede encontrar aquí: https://plugins.jetbrains.com/plugin/1065
Estoy usando STS e instalado el plugin checkstyle. Utilizando instalar nuevo software con esta URL http://eclipse-cs.sourceforge.net/update .
Tengo mi propia regla de estilo de verificación para mi proyecto Java. Cada vez que cambio un código y lo guardo, aparece el siguiente error para mí.
Errors occurred during the build.
Errors running builder ''Checkstyle Builder'' on project ''myproject''.
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
cannot initialize module TreeWalker - Unable to instantiate RedundantThrows
Esta es mi regla de estilo de verificación para RedundantThrows
<module name="RedundantThrows">
<property name="logLoadErrors" value="true" />
<property name="suppressLoadErrors" value="true" />
</module>
¿Como solucionar el problema?
Gracias.
RedundantThrows se eliminó con la versión 6.2 (consulte https://github.com/checkstyle/checkstyle/issues/473 )