Description
ModifierOrder (http://checkstyle.sourceforge.net/config_modifier.html#ModifierOrder) enforces the order of modifiers matches one given in Java language specification. Our code has ~370 violations, the most frequent is that @Parameter annotation modifier does not precede non-annotation modifiers.
Is the relative order of @Parameter annotation and other modifiers important for us? If not, we should fix the violations as checkstyle suggests.