标签: sonarqube
我们使用@PostConstruct注释来设置方法(Spring依赖注入(@Autowired))并得到误报:
@PostConstruct
@Autowired
“应删除未使用的私有方法”
@PostConstruct private void setupAbc() { ... }
任何提示?
答案 0 :(得分:3)
该规则将跳过带注释的私有未使用方法,它将在版本sonar-java-plugin 3.6版中修复。 https://jira.sonarsource.com/browse/SONARJAVA-1179