Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
66 0 172 0

Files

File  I  W  E
org/opendaylight/yangtools/util/AbstractIdentifier.java 0 1 0
org/opendaylight/yangtools/util/AbstractStringIdentifier.java 0 1 0
org/opendaylight/yangtools/util/AbstractUUIDIdentifier.java 0 1 0
org/opendaylight/yangtools/util/ClassLoaderUtils.java 0 2 0
org/opendaylight/yangtools/util/ConstantArrayCollection.java 0 10 0
org/opendaylight/yangtools/util/ExecutorServiceUtil.java 0 2 0
org/opendaylight/yangtools/util/HashCodeBuilderTest.java 0 1 0
org/opendaylight/yangtools/util/ImmutableOffsetMap.java 0 5 0
org/opendaylight/yangtools/util/Immutables.java 0 1 0
org/opendaylight/yangtools/util/ListenerRegistry.java 0 1 0
org/opendaylight/yangtools/util/ListenerRegistryTest.java 0 3 0
org/opendaylight/yangtools/util/MapAdaptor.java 0 3 0
org/opendaylight/yangtools/util/MutableOffsetMap.java 0 7 0
org/opendaylight/yangtools/util/OffsetMapCache.java 0 3 0
org/opendaylight/yangtools/util/ReadWriteTrieMap.java 0 2 0
org/opendaylight/yangtools/util/ReadWriteTrieMapTest.java 0 3 0
org/opendaylight/yangtools/util/SharedSingletonMap.java 0 3 0
org/opendaylight/yangtools/util/SharedSingletonMapTest.java 0 12 0
org/opendaylight/yangtools/util/SingletonSet.java 0 9 0
org/opendaylight/yangtools/util/SingletonSetTest.java 0 12 0
org/opendaylight/yangtools/util/UnmodifiableCollection.java 0 8 0
org/opendaylight/yangtools/util/concurrent/AsyncNotifyingListeningExecutorServiceTest.java 0 4 0
org/opendaylight/yangtools/util/concurrent/CountingRejectedExecutionHandlerTest.java 0 5 0
org/opendaylight/yangtools/util/concurrent/DeadlockDetectingListeningExecutorServiceTest.java 0 7 0
org/opendaylight/yangtools/util/concurrent/ExceptionMapper.java 0 2 0
org/opendaylight/yangtools/util/concurrent/MappingCheckedFuture.java 0 2 0
org/opendaylight/yangtools/util/concurrent/MappingCheckedFutureTest.java 0 8 0
org/opendaylight/yangtools/util/concurrent/QueuedNotificationManager.java 0 4 0
org/opendaylight/yangtools/util/concurrent/QueuedNotificationManagerTest.java 0 15 0
org/opendaylight/yangtools/util/concurrent/ReflectiveExceptionMapper.java 0 1 0
org/opendaylight/yangtools/util/concurrent/ReflectiveExceptionMapperTest.java 0 10 0
org/opendaylight/yangtools/util/concurrent/ThreadPoolExecutorTest.java 0 7 0
org/opendaylight/yangtools/util/concurrent/TrackingLinkedBlockingQueue.java 0 12 0
org/opendaylight/yangtools/util/concurrent/TrackingLinkedBlockingQueueTest.java 0 2 0
org/opendaylight/yangtools/util/xml/UntrustedXML.java 0 3 0

Rules

Category Rule Violations Severity
blocks EmptyBlock
  • tokens: "LITERAL_TRY, LITERAL_CATCH, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"
  • option: "TEXT"
1  Warning
coding IllegalCatch 9  Warning
IllegalThrows 2  Warning
OverloadMethodsDeclarationOrder 1  Warning
VariableDeclarationUsageDistance 3  Warning
imports CustomImportOrder
  • thirdPartyPackageRegExp: ".*"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
1  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
3  Warning
javadoc JavadocParagraph
  • allowNewlineParagraph: "false"
1  Warning
JavadocStyle
  • checkEmptyJavadoc: "true"
3  Warning
NonEmptyAtclauseDescription 2  Warning
modifier RedundantModifier 4  Warning
naming LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
10  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]*$"
59  Warning
regexp RegexpSinglelineJava
  • ignoreComments: "false"
  • format: "\.printStackTrace?\("
  • message: "Line contains printStacktrace()."
2  Warning
RegexpSinglelineJava
  • ignoreComments: "false"
  • format: "System\.(out)|(err)\.print(ln)?\("
  • message: "Line contains console output."
6  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
10  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
  • tokens: "IMPORT, CLASS_DEF, INTERFACE_DEF, ENUM_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"
3  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
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
47  Warning

Details

org/opendaylight/yangtools/util/AbstractIdentifier.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 41

org/opendaylight/yangtools/util/AbstractStringIdentifier.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 29

org/opendaylight/yangtools/util/AbstractUUIDIdentifier.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 29

org/opendaylight/yangtools/util/ClassLoaderUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'com.google.common.base.Joiner' should be separated from previous import group. 11
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 58

org/opendaylight/yangtools/util/ConstantArrayCollection.java

Severity Category Rule Message Line
 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]*$'. 162

org/opendaylight/yangtools/util/ExecutorServiceUtil.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 26
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 59

org/opendaylight/yangtools/util/HashCodeBuilderTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 122). 25

org/opendaylight/yangtools/util/ImmutableOffsetMap.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 119
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 166
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 224
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 298
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 326

org/opendaylight/yangtools/util/Immutables.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 38

org/opendaylight/yangtools/util/ListenerRegistry.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 66

org/opendaylight/yangtools/util/ListenerRegistryTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 122). 52
 Warning sizes LineLength Line is longer than 120 characters (found 146). 62
 Warning sizes LineLength Line is longer than 120 characters (found 135). 75

org/opendaylight/yangtools/util/MapAdaptor.java

Severity Category Rule Message Line
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 62
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 170
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 171

org/opendaylight/yangtools/util/MutableOffsetMap.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 146
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 158
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 365
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 419
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 511
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 526
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 533

org/opendaylight/yangtools/util/OffsetMapCache.java

Severity Category Rule Message Line
 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/ReadWriteTrieMap.java

Severity Category Rule Message Line
 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/ReadWriteTrieMapTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 149). 54
 Warning sizes LineLength Line is longer than 120 characters (found 134). 59
 Warning sizes LineLength Line is longer than 120 characters (found 165). 60

org/opendaylight/yangtools/util/SharedSingletonMap.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 80
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 87
 Warning naming ParameterName Parameter name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 145

org/opendaylight/yangtools/util/SharedSingletonMapTest.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 87
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 87
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 92
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 92
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 102
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 102
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 107
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 107
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 112
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 112

org/opendaylight/yangtools/util/SingletonSet.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 32
 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/SingletonSetTest.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 76
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 76
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 82
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 82
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 88
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 88
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 94
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 94
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 100
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 100
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 106
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 106

org/opendaylight/yangtools/util/UnmodifiableCollection.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 87
 Warning naming ParameterName Parameter name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 97
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 102
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 107
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 112
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 117
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 122
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 127

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

Severity Category Rule Message Line
 Warning whitespace OperatorWrap '+' should be on a new line. 142
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 145
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 153
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 155

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

Severity Category Rule Message Line
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nTasks' 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). 43
 Warning naming LocalVariableName Local variable name 'nTasks' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 43
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nTasks' 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). 70
 Warning naming LocalVariableName Local variable name 'nTasks' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 70
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 87

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

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 100
 Warning coding IllegalThrows Throwing 'Throwable' is not allowed. 127
 Warning coding IllegalThrows Throwing 'Throwable' is not allowed. 139
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 156
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 199
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 201
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 201

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

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 126). 22
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 74

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

Severity Category Rule Message Line
 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

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

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 36
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 173
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 173
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 197
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 197
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 220
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 231
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 231

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

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'l' 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]*$'. 123
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 126
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 433

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

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 149
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 149
 Warning coding VariableDeclarationUsageDistance Distance between variable 'initialCount' declaration and its first usage is 12, 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). 156
 Warning naming LocalVariableName Local variable name 'nNotifications' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 157
 Warning naming LocalVariableName Local variable name 'v' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 178
 Warning naming LocalVariableName Local variable name 'nListeners' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 189
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 246
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 246
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 257
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 266
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 266
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 13, expected level should be one of the following: 12, 16. 271
 Warning indentation Indentation 'method def' child have incorrect indentation level 17, expected level should be one of the following: 16, 20. 273
 Warning coding IllegalCatch Catching 'Error' is not allowed. 276
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 13, expected level should be one of the following: 12, 16. 280

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

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 124). 32

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

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 19
 Warning modifier RedundantModifier Redundant 'public' modifier. 35
 Warning modifier RedundantModifier Redundant 'public' modifier. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 49
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 49
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 54
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 54
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 59
 Warning sizes LineLength Line is longer than 120 characters (found 129). 66

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

Severity Category Rule Message Line
 Warning regexp RegexpSinglelineJava Line contains console output. 102
 Warning regexp RegexpSinglelineJava Line contains console output. 136
 Warning regexp RegexpSinglelineJava Line contains console output. 138
 Warning regexp RegexpSinglelineJava Line contains console output. 141
 Warning regexp RegexpSinglelineJava Line contains console output. 142
 Warning regexp RegexpSinglelineJava Line contains console output. 143
 Warning blocks EmptyBlock Empty catch block. 182

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

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 37
 Warning javadoc JavadocStyle Javadoc has empty description section. 37
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 44
 Warning javadoc JavadocStyle Javadoc has empty description section. 44
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 47
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 51
 Warning javadoc JavadocStyle Javadoc has empty description section. 51
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 69
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 79
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 89
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 95
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 102

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

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 77
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 96

org/opendaylight/yangtools/util/xml/UntrustedXML.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'STATIC_INIT' should be separated from previous statement. 28
 Warning whitespace EmptyLineSeparator 'STATIC_INIT' should be separated from previous statement. 48
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 57