Inspectopedia
 
2024.3

'static' method declared 'final'

Warning
New
Last modified: 03 December 2024

Reports static methods that are marked as final.

Such code might indicate an error or an 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 used with static methods is to ensure the method will not be hidden in a subclass.