What does “Can be package local” mean? (IDEA Inspection)

前端 未结 5 1454
太阳男子
太阳男子 2020-12-14 14:08

I used IntelliJ for \"Inspect Code\", and one of its results is:

  Problem synopsis      Can be package local (at line 18(public class HeartBeat))

5条回答
  •  暖寄归人
    2020-12-14 14:43

    Each of these lint warnings can be suppressed on a case-by-case basis with the following code.

    @SuppressWarnings("WeakerAccess")
    

提交回复
热议问题