Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
40 0 391 0

Files

File  I  W  E
org/opendaylight/yangtools/util/ClassLoaderUtils.java 0 25 0
org/opendaylight/yangtools/util/ConcurrentDurationStatisticsTracker.java 0 7 0
org/opendaylight/yangtools/util/ConstantArrayCollection.java 0 17 0
org/opendaylight/yangtools/util/DurationStatisticsTracker.java 0 22 0
org/opendaylight/yangtools/util/DurationWithTime.java 0 1 0
org/opendaylight/yangtools/util/ExecutorServiceUtil.java 0 7 0
org/opendaylight/yangtools/util/HashCodeBuilder.java 0 3 0
org/opendaylight/yangtools/util/Identifiables.java 0 3 0
org/opendaylight/yangtools/util/ImmutableOffsetMap.java 0 28 0
org/opendaylight/yangtools/util/Immutables.java 0 6 0
org/opendaylight/yangtools/util/LazyCollections.java 0 10 0
org/opendaylight/yangtools/util/ListenerRegistry.java 0 5 0
org/opendaylight/yangtools/util/MapAdaptor.java 0 24 0
org/opendaylight/yangtools/util/ModifiableMapPhase.java 0 4 0
org/opendaylight/yangtools/util/MutableOffsetMap.java 0 30 0
org/opendaylight/yangtools/util/OffsetMapCache.java 0 11 0
org/opendaylight/yangtools/util/PropertyUtils.java 0 1 0
org/opendaylight/yangtools/util/ReadOnlyTrieMap.java 0 3 0
org/opendaylight/yangtools/util/ReadWriteTrieMap.java 0 8 0
org/opendaylight/yangtools/util/SharedSingletonMap.java 0 10 0
org/opendaylight/yangtools/util/SingletonSet.java 0 16 0
org/opendaylight/yangtools/util/SynchronizedDurationStatsTracker.java 0 1 0
org/opendaylight/yangtools/util/UnmodifiableCollection.java 0 16 0
org/opendaylight/yangtools/util/UnmodifiableMapPhase.java 0 3 0
org/opendaylight/yangtools/util/concurrent/AsyncNotifyingListenableFutureTask.java 0 9 0
org/opendaylight/yangtools/util/concurrent/AsyncNotifyingListeningExecutorService.java 0 10 0
org/opendaylight/yangtools/util/concurrent/CachedThreadPoolExecutor.java 0 12 0
org/opendaylight/yangtools/util/concurrent/CountingRejectedExecutionHandler.java 0 3 0
org/opendaylight/yangtools/util/concurrent/DeadlockDetectingListeningExecutorService.java 0 12 0
org/opendaylight/yangtools/util/concurrent/ExceptionMapper.java 0 5 0
org/opendaylight/yangtools/util/concurrent/FastThreadPoolExecutor.java 0 3 0
org/opendaylight/yangtools/util/concurrent/MappingCheckedFuture.java 0 14 0
org/opendaylight/yangtools/util/concurrent/NotificationManager.java 0 2 0
org/opendaylight/yangtools/util/concurrent/QueuedNotificationManager.java 0 30 0
org/opendaylight/yangtools/util/concurrent/ReflectiveExceptionMapper.java 0 4 0
org/opendaylight/yangtools/util/concurrent/SettableBoolean.java 0 1 0
org/opendaylight/yangtools/util/concurrent/SettableBooleanThreadLocal.java 0 1 0
org/opendaylight/yangtools/util/concurrent/SpecialExecutors.java 0 6 0
org/opendaylight/yangtools/util/concurrent/TrackingLinkedBlockingQueue.java 0 18 0

Rules

Category Rule Violations Severity
coding MultipleVariableDeclarations 1  Warning
OverloadMethodsDeclarationOrder 1  Warning
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
126  Warning
indentation Indentation
  • lineWrappingIndentation: "4"
  • caseIndent: "4"
  • arrayInitIndent: "4"
  • throwsIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
41  Warning
javadoc JavadocMethod
  • allowMissingParamTags: "true"
  • allowedAnnotations: "Override, Test"
  • allowThrowsTagsForSubclasses: "true"
  • scope: "public"
  • allowMissingReturnTag: "true"
  • minLineCount: "2"
  • allowMissingThrowsTags: "true"
12  Warning
JavadocParagraph 33  Warning
NonEmptyAtclauseDescription 7  Warning
modifier ModifierOrder 2  Warning
naming AbbreviationAsWordInName
  • allowedAbbreviationLength: "1"
  • ignoreFinal: "false"
3  Warning
LocalVariableName
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
5  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
55  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
24  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
31  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"
1  Warning
WhitespaceAround
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
  • allowEmptyMethods: "true"
  • allowEmptyConstructors: "true"
44  Warning

Details

org/opendaylight/yangtools/util/ClassLoaderUtils.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 14
 Warning imports CustomImportOrder 'java.lang.reflect.Constructor'should be separated from previous import group. 15
 Warning imports CustomImportOrder 'org.slf4j.Logger'should be separated from previous import group. 22
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 33
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 35
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 58
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 60
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 89
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 93
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 95
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 96
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not preceded with whitespace. 117
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not followed by whitespace. 117
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 127
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 131
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 137
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 141
 Warning javadoc JavadocMethod Missing a Javadoc comment. 141
 Warning sizes LineLength Line is longer than 120 characters (found 143). 151
 Warning sizes LineLength Line is longer than 120 characters (found 133). 154
 Warning javadoc JavadocMethod Missing a Javadoc comment. 168
 Warning javadoc JavadocMethod Missing a Javadoc comment. 182

org/opendaylight/yangtools/util/ConcurrentDurationStatisticsTracker.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning sizes LineLength Line is longer than 120 characters (found 125). 19
 Warning sizes LineLength Line is longer than 120 characters (found 129). 20
 Warning sizes LineLength Line is longer than 120 characters (found 126). 21
 Warning sizes LineLength Line is longer than 120 characters (found 130). 22

org/opendaylight/yangtools/util/ConstantArrayCollection.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 45
 Warning naming MemberName Member name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 57
 Warning naming ParameterName Parameter name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 81
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 94
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 99
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 104
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 115
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 120
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 125
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 165

org/opendaylight/yangtools/util/DurationStatisticsTracker.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 15
 Warning imports CustomImportOrder 'java.text.DecimalFormat'should be separated from previous import group. 16
 Warning imports CustomImportOrder 'org.slf4j.Logger'should be separated from previous import group. 20
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 208
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 209
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 210
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 211
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 212
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 213
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 214
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 215
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 216
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 217
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 218
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 219
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 220
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 221
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 222
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 223
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 223
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 224

org/opendaylight/yangtools/util/DurationWithTime.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8

org/opendaylight/yangtools/util/ExecutorServiceUtil.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.util.concurrent.ForwardingBlockingQueue' import. 20
 Warning naming ParameterName Parameter name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 28
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 29
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 61
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 93
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 96

org/opendaylight/yangtools/util/HashCodeBuilder.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 20
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 26

org/opendaylight/yangtools/util/Identifiables.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning sizes LineLength Line is longer than 120 characters (found 131). 16

org/opendaylight/yangtools/util/ImmutableOffsetMap.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 21
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 23
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 24
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 26
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 27
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 28
 Warning modifier ModifierOrder 'final' modifier out of order with the JLS suggestions. 82
 Warning modifier ModifierOrder 'final' modifier out of order with the JLS suggestions. 83
 Warning sizes LineLength Line is longer than 120 characters (found 121). 106
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 117
 Warning sizes LineLength Line is longer than 120 characters (found 121). 123
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 132
 Warning sizes LineLength Line is longer than 120 characters (found 121). 166
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 175
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 233
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 307
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 335
 Warning sizes LineLength Line is longer than 120 characters (found 128). 405

org/opendaylight/yangtools/util/Immutables.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 30
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 38

org/opendaylight/yangtools/util/LazyCollections.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 36
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 37
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 38
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 39
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 40
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 40
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 41
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 42
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 43

org/opendaylight/yangtools/util/ListenerRegistry.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.yangtools.concepts.AbstractObjectRegistration'should be separated from previous import group. 16
 Warning javadoc JavadocMethod Missing a Javadoc comment. 25
 Warning javadoc JavadocMethod Missing a Javadoc comment. 38
 Warning javadoc JavadocMethod Missing a Javadoc comment. 47

org/opendaylight/yangtools/util/MapAdaptor.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning sizes LineLength Line is longer than 120 characters (found 121). 83
 Warning javadoc JavadocMethod Missing a Javadoc comment. 83
 Warning sizes LineLength Line is longer than 120 characters (found 131). 86
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 115
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 116
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 137
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 138
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 139
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 140
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 141
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 142
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 143
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 144
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 145
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 146
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 147
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 148
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 171
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 172

org/opendaylight/yangtools/util/ModifiableMapPhase.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning sizes LineLength Line is longer than 120 characters (found 127). 18

org/opendaylight/yangtools/util/MutableOffsetMap.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 21
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 23
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 24
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 26
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 37
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 150
 Warning javadoc JavadocMethod Missing a Javadoc comment. 154
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 154
 Warning javadoc JavadocMethod Missing a Javadoc comment. 166
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 166
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 195
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 196
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 197
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 378
 Warning indentation Indentation 'catch' child have incorrect indentation level 11, expected level should be 12. 409
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 432
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 524
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 539
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 546
 Warning whitespace EmptyLineSeparator ',' should be separated from previous statement. 592
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 592

org/opendaylight/yangtools/util/OffsetMapCache.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 21
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 23
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 24
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning indentation Indentation 'object def rcurly' have incorrect indentation level 4, expected level should be one of the following: 12, 16. 38
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 96
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '72'. 105
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 121

org/opendaylight/yangtools/util/PropertyUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Strings' import. 14

org/opendaylight/yangtools/util/ReadOnlyTrieMap.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14

org/opendaylight/yangtools/util/ReadWriteTrieMap.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 23
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 95
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 123

org/opendaylight/yangtools/util/SharedSingletonMap.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 92
 Warning javadoc JavadocMethod Missing a Javadoc comment. 96
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 96
 Warning javadoc JavadocMethod Missing a Javadoc comment. 103
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 103
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 161

org/opendaylight/yangtools/util/SingletonSet.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 32
 Warning javadoc JavadocMethod Missing a Javadoc comment. 56
 Warning naming ParameterName Parameter name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 88
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 98
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 103
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 108
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 120
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 125
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 130
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 172

org/opendaylight/yangtools/util/SynchronizedDurationStatsTracker.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8

org/opendaylight/yangtools/util/UnmodifiableCollection.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 26
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 88
 Warning naming ParameterName Parameter name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 98
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 103
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 108
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 113
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 118
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 123
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 128

org/opendaylight/yangtools/util/UnmodifiableMapPhase.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/yangtools/util/concurrent/AsyncNotifyingListenableFutureTask.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 32
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 37
 Warning sizes LineLength Line is longer than 120 characters (found 126). 48
 Warning sizes LineLength Line is longer than 120 characters (found 133). 54

org/opendaylight/yangtools/util/concurrent/AsyncNotifyingListeningExecutorService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 21
 Warning sizes LineLength Line is longer than 120 characters (found 134). 24
 Warning sizes LineLength Line is longer than 120 characters (found 129). 26
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 32
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 36

org/opendaylight/yangtools/util/concurrent/CachedThreadPoolExecutor.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 25
 Warning sizes LineLength Line is longer than 120 characters (found 121). 53
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 167
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 207

org/opendaylight/yangtools/util/concurrent/CountingRejectedExecutionHandler.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15

org/opendaylight/yangtools/util/concurrent/DeadlockDetectingListeningExecutorService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 21
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 22
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 27
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 38
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 43
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 174

org/opendaylight/yangtools/util/concurrent/ExceptionMapper.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 19
 Warning sizes LineLength Line is longer than 120 characters (found 166). 20
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 67

org/opendaylight/yangtools/util/concurrent/FastThreadPoolExecutor.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 20

org/opendaylight/yangtools/util/concurrent/MappingCheckedFuture.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 23
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 26
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 58
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 62
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 70
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 73
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 75
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 85
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 88
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 90

org/opendaylight/yangtools/util/concurrent/NotificationManager.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 25
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 36

org/opendaylight/yangtools/util/concurrent/QueuedNotificationManager.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Preconditions' import. 29
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 35
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 104
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 118
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 122
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. 135
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 138
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 148
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 153
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 172
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 181
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 193
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 204
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 211
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 280
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 293
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 297
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. 299
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 310
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 315
 Warning whitespace OperatorWrap '+' should be on a new line. 320
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. 345
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 351
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 357
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 366
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 384
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 400
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 406
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 413
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 421

org/opendaylight/yangtools/util/concurrent/ReflectiveExceptionMapper.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning sizes LineLength Line is longer than 120 characters (found 124). 32
 Warning sizes LineLength Line is longer than 120 characters (found 153). 48
 Warning sizes LineLength Line is longer than 120 characters (found 124). 58

org/opendaylight/yangtools/util/concurrent/SettableBoolean.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8

org/opendaylight/yangtools/util/concurrent/SettableBooleanThreadLocal.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8

org/opendaylight/yangtools/util/concurrent/SpecialExecutors.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 29
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 35
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 38
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 88
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 91
 Warning javadoc JavadocParagraph <p> tag should be precede with empty line. 94

org/opendaylight/yangtools/util/concurrent/TrackingLinkedBlockingQueue.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning sizes LineLength Line is longer than 120 characters (found 201). 27
 Warning javadoc SummaryJavadoc First sentence should be present. 30
 Warning javadoc SummaryJavadoc First sentence should be present. 36
 Warning javadoc SummaryJavadoc First sentence should be present. 43
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 46
 Warning javadoc SummaryJavadoc First sentence should be present. 50
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 59
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 68
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 69
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 78
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 79
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 88
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 94
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 101