Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
5 0 35 0

Rules

Category Rule Violations Severity
coding VariableDeclarationUsageDistance 1  Warning
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
2  Warning
javadoc JavadocMethod
  • allowMissingParamTags: "true"
  • allowedAnnotations: "Override, Test"
  • allowThrowsTagsForSubclasses: "true"
  • scope: "public"
  • allowMissingReturnTag: "true"
  • minLineCount: "2"
  • allowMissingThrowsTags: "true"
3  Warning
JavadocParagraph 1  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
7  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
1  Warning
OperatorWrap
  • tokens: "BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "
  • option: "NL"
14  Warning
WhitespaceAround
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
  • allowEmptyMethods: "true"
  • allowEmptyConstructors: "true"
5  Warning

Details

org/opendaylight/ovsdb/utils/ovsdb/it/utils/DockerOvs.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STATIC' group. 41
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 67
 Warning sizes LineLength Line is longer than 120 characters (found 127). 74
 Warning sizes LineLength Line is longer than 120 characters (found 137). 80
 Warning whitespace OperatorWrap '+' should be on a new line. 90
 Warning whitespace OperatorWrap '+' should be on a new line. 91
 Warning whitespace OperatorWrap '+' should be on a new line. 92
 Warning sizes LineLength Line is longer than 120 characters (found 123). 93
 Warning whitespace OperatorWrap '+' should be on a new line. 93
 Warning sizes LineLength Line is longer than 120 characters (found 143). 94
 Warning whitespace OperatorWrap '+' should be on a new line. 94
 Warning sizes LineLength Line is longer than 120 characters (found 123). 95
 Warning whitespace OperatorWrap '+' should be on a new line. 95
 Warning sizes LineLength Line is longer than 120 characters (found 127). 96
 Warning whitespace OperatorWrap '+' should be on a new line. 96
 Warning whitespace OperatorWrap '+' should be on a new line. 97
 Warning whitespace OperatorWrap '+' should be on a new line. 98
 Warning whitespace OperatorWrap '+' should be on a new line. 99
 Warning sizes LineLength Line is longer than 120 characters (found 153). 100
 Warning whitespace OperatorWrap '+' should be on a new line. 100
 Warning whitespace OperatorWrap '+' should be on a new line. 101
 Warning whitespace OperatorWrap '+' should be on a new line. 102
 Warning whitespace OperatorWrap '+' should be on a new line. 103
 Warning whitespace EmptyLineSeparator 'VARIABLE_DEF' should be separated from previous statement. 130
 Warning coding VariableDeclarationUsageDistance Distance between variable 'connType' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 197
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 205
 Warning javadoc SummaryJavadoc First sentence should be present. 252
 Warning javadoc JavadocMethod Missing a Javadoc comment. 292
 Warning javadoc JavadocMethod Missing a Javadoc comment. 299
 Warning javadoc JavadocMethod Missing a Javadoc comment. 307

org/opendaylight/ovsdb/utils/ovsdb/it/utils/ItConstants.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40

org/opendaylight/ovsdb/utils/ovsdb/it/utils/ProcUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.InputStreamReader' import. 13