本文介绍了Checkstyle Eclipse插件不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用eclipse checkstyle插件与Juno Eclipse发行版。任何时候检查代码检查checkstyle错误我得到以下错误: 无法初始化模块TreeWalker - 无法实例化DoubleCheckedLocking
/ / code>
有人知道如何解决这个问题?是否是插件兼容性问题或其他问题?
解决方案
Checkstyle 5.6中已删除DoubleCheckedLocking检查,必须手动从您的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?
解决方案
The DoubleCheckedLocking check has been removed in Checkstyle 5.6 and must be manually removed from your Checkstyle configuration.
See also: http://sourceforge.net/tracker/index.php?func=detail&aid=3571442&group_id=29721&atid=397078
这篇关于Checkstyle Eclipse插件不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!