Reports static methods that are marked final.
Such code may indicate an error or incorrect assumption about the effect of the final keyword. Static methods are not subject to runtime polymorphism, so the only purpose of the final keyword with static methods is to ensure the method will not be hidden in a subclass.