Back to Intellij Community

ProtectedField

java/java-impl/resources/inspectionDescriptions/ProtectedField.html

2025.3-rc-2253 B
Original Source

Reports protected fields.

Constants (that is, variables marked static or final) are not reported.

Example:

public class A {
    protected Object object; // warning
    protected final static int MODE = 0; // constant, no warning
  }