Description
RedundantModifier (http://checkstyle.sourceforge.net/config_modifier.html#RedundantModifier) check suggests to remove modifiers when they are redundant. We have ~420 violations in our code, two most typical scenarios are:
- public modifier on interface method
- final modifier on method of final class
If we intend to keep as close to existing checkstyle configuration as possible, we need to remove these modifiers (thus sacrificing a bit of readability).