How to disable “Access can be package-private” message in IntelliJ?

前端 未结 5 488
梦如初夏
梦如初夏 2021-01-31 13:20

Developing an API, the warning message \"Access can be package-package\" in Java classes can be really annoying.

I\'ve already spent some time going through the setting

5条回答
  •  隐瞒了意图╮
    2021-01-31 13:42

    Another solution not mentioned so far: if you have a method that's declared public, and the IDE is telling you that there are no references to the method from outside the package, then perhaps you need to add a test case that calls that method from outside the package. In other words, treat the warning as signalling the absence of a test case for a public method.

提交回复
热议问题