Checkstyle Results

The following document contains the results of Checkstyle 6.2 with odl_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
1 0 5 0

Rules

Category Rule Violations Severity
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
1  Warning
misc ArrayTypeStyle 1  Warning
naming LocalVariableName
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning

Details

org/opendaylight/netvirt/utils/servicehelper/ServiceHelper.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.osgi.framework.BundleContext' import. 17
 Warning javadoc SummaryJavadoc First sentence should be present. 21
 Warning javadoc SummaryJavadoc First sentence should be present. 70
 Warning misc ArrayTypeStyle Array brackets at illegal position. 81
 Warning naming LocalVariableName Local variable name 'bCtx' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 85