主要:应删除未使用的私有方法 - postConstruct Annotation - false positive

时间:2015-09-15 14:25:43

标签: sonarqube

我们使用@PostConstruct注释来设置方法(Spring依赖注入(@Autowired))并得到误报:

  

“应删除未使用的私有方法”

@PostConstruct
private void setupAbc() {
...
}

任何提示?

1 个答案:

答案 0 :(得分:3)

该规则将跳过带注释的私有未使用方法,它将在版本sonar-java-plugin 3.6版中修复。 https://jira.sonarsource.com/browse/SONARJAVA-1179