IgnoredPureGetter
Getters on AutoValues, AutoBuilders, and Protobuf Messages are side-effect free, so there is no point in calling them if the return value is ignored. While there are no side effects from the getter, the receiver may have side effects.

Severity
WARNING

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("IgnoredPureGetter") to the enclosing element.