Checkstyle Results

The following document contains the results of Checkstyle 8.29 with https://maven.avcompris.com/checkstyle.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
7 0 0 11

Rules

Category Rule Violations Severity
coding HiddenField
  • tokens: "VARIABLE_DEF"
1  Error
UnnecessaryParentheses 6  Error
design DesignForExtension 1  Error
javadoc JavadocMethod
  • validateThrows: "true"
  • scope: "private"
  • allowMissingReturnTag: "false"
  • allowMissingParamTags: "false"
1  Error
JavadocType
  • authorFormat: "\S"
  • scope: "private"
  • allowMissingParamTags: "false"
1  Error
naming AbstractClassName
  • format: "^Abstract.*$|^.*Utils$|^.*Assert$|^.*Matchers$"
1  Error

Details

net/avcompris/status/web/Application.java

Severity Category Rule Message Line
 Error javadoc JavadocType Type Javadoc comment is missing @author tag. 40
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'corsConfigurer' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'corsConfigurer' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error coding HiddenField 'secure' hides a field. 131
 Error javadoc JavadocMethod Expected @return tag. 150

net/avcompris/status/web/MyAbstractController.java

Severity Category Rule Message Line
 Error naming AbstractClassName Name 'MyAbstractController' must match pattern '^Abstract.*$|^.*Utils$|^.*Assert$|^.*Matchers$'. 8

net/avcompris/status/web/StatusController.java

Severity Category Rule Message Line
 Error coding UnnecessaryParentheses Unnecessary parentheses around lambda value. 62
 Error coding UnnecessaryParentheses Unnecessary parentheses around lambda value. 77
 Error coding UnnecessaryParentheses Unnecessary parentheses around lambda value. 93
 Error coding UnnecessaryParentheses Unnecessary parentheses around lambda value. 113
 Error coding UnnecessaryParentheses Unnecessary parentheses around lambda value. 128
 Error coding UnnecessaryParentheses Unnecessary parentheses around lambda value. 142