Checkstyle Eclipse 插件不起作用

2022-01-16 00:00:00 eclipse-plugin eclipse checkstyle

我正在使用带有 Juno Eclipse 发行版的 eclipse checkstyle 插件.每当检查代码是否存在 checkstyle 错误时,我都会收到以下错误:

I'm using eclipse checkstyle plugin with Juno Eclipse distribution. Anytime the code is checked for checkstyle error I get the following error:

cannot initialize module TreeWalker - Unable to instantiate DoubleCheckedLocking

有人知道如何解决这个问题吗?是插件兼容性问题还是别的什么?

Does anybody know how to fix this problem? Is it a plugin compatibility issue or something else?

推荐答案

DoubleCheckedLocking 检查已在 Checkstyle 5.6 中移除,必须从您的 Checkstyle 配置中手动移除.

The DoubleCheckedLocking check has been removed in Checkstyle 5.6 and must be manually removed from your Checkstyle configuration.

另请参阅:http:///sourceforge.net/tracker/index.php?func=detail&aid=3571442&group_id=29721&atid=397078

相关文章