View by Classes

Findings - Overview

code-style Wrong order of Modifier (Checkstyle)

'static' modifier out of order with the JLS suggestions.

Further info on the wiki.

Checks that the order of modifiers conforms to the suggestions in the Java Language specification, sections 8.1.1, 8.3.1 and 8.4.3. The correct order is:

  1. public
  2. protected
  3. private
  4. abstract
  5. static
  6. final
  7. transient
  8. volatile
  9. synchronized
  10. native
  11. strictfp
2org.jcoderz.commons.tracing.TracingInjector
 [121:18],  [122:18]