static
fields should almost always be both final
and deeply immutable.
Instead of:
private static String FOO = "foo";
Prefer:
private static final String FOO = "foo";
Suppress false positives by adding the suppression annotation @SuppressWarnings("NonFinalStaticField")
to the enclosing element.