JavaxInjectOnFinalField
@javax.inject.Inject cannot be put on a final field.

Severity
WARNING

The problem

According to the JSR-330 spec, the @javax.inject.Inject annotation cannot go on final fields.

Suppression

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