web-dev-qa-db-fra.com

Java - Checkstyle - Lancés redondants

J'utilise STS et le plugin checkstyle installé. Utilisation de install new software avec cette URL http://Eclipse-cs.sourceforge.net/update .

J'ai ma propre règle de contrôle de style pour mon projet Java. Chaque fois que je modifie un code et que je l’enregistre, il affiche pour moi l’erreur suivante.

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

Ceci est ma règle de contrôle pour RedundantThrows

<module name="RedundantThrows">
            <property name="logLoadErrors" value="true" />
            <property name="suppressLoadErrors" value="true" />
        </module>

Comment resoudre le probleme?

Merci.

25
iCode

RedundantThrows a été supprimé de la version 6.2 (voir https://github.com/checkstyle/checkstyle/issues/473 ).

41
Joachim Rohde

J'ai connu la même chose avec IntelliJ IDEA. Ce que j'ai fait est que je suis passé à une version plus ancienne du plugin checkstyle que l'on peut trouver ici: https://plugins.jetbrains.com/plugin/1065

0
Dosi Bingov