This project has retired. For details please refer to its Attic page.
Archiva Base :: Repository Interface Layer – Checkstyle Results Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 5.7. rss feed

Summary

Files  Info  Warnings  Errors
25 2 44 680

Files

File  I  W  E
org/apache/archiva/indexer/merger/base/DefaultIndexMerger.java 0 0 2
org/apache/archiva/indexer/merger/base/DefaultMergedRemoteIndexesScheduler.java 0 0 1
org/apache/archiva/indexer/merger/base/MergedRemoteIndexesTask.java 0 2 0
org/apache/archiva/indexer/merger/base/MergedRemoteIndexesTaskRequest.java 0 5 0
org/apache/archiva/indexer/merger/base/MergedRemoteIndexesTaskResult.java 0 3 0
org/apache/archiva/indexer/merger/base/TemporaryGroupIndexCleaner.java 0 0 2
org/apache/archiva/repository/base/AbstractManagedRepository.java 0 2 9
org/apache/archiva/repository/base/AbstractRemoteRepository.java 0 3 33
org/apache/archiva/repository/base/AbstractRepository.java 2 9 166
org/apache/archiva/repository/base/AbstractRepositoryGroup.java 0 3 102
org/apache/archiva/repository/base/ArchivaRepositoryRegistry.java 0 0 1
org/apache/archiva/repository/base/ArchivaRepositoryRegistryTest.java 0 0 1
org/apache/archiva/repository/base/BasicManagedRepository.java 0 3 16
org/apache/archiva/repository/base/BasicRemoteRepository.java 0 3 18
org/apache/archiva/repository/base/PasswordCredentials.java 0 5 8
org/apache/archiva/repository/content/base/ArtifactClassifierMapping.java 0 1 1
org/apache/archiva/repository/content/base/ArtifactUtil.java 0 2 20
org/apache/archiva/repository/metadata/base/MetadataTools.java 0 0 1
org/apache/archiva/repository/metadata/base/RepositoryMetadataMerge.java 0 1 76
org/apache/archiva/repository/metadata/base/RepositoryMetadataWriter.java 0 2 35
org/apache/archiva/repository/mock/ArchivaIndexManagerMock.java 0 0 41
org/apache/archiva/repository/mock/ManagedRepositoryContentMock.java 0 0 2
org/apache/archiva/repository/mock/RemoteRepositoryContentMock.java 0 0 2
org/apache/archiva/repository/mock/RepositoryContentProviderMock.java 0 0 25
org/apache/archiva/repository/mock/RepositoryProviderMock.java 0 0 118

Rules

Category Rule Violations Severity
blocks EmptyBlock
  • option: "text"
1  Error
LeftCurly
  • option: "nl"
120  Error
NeedBraces 3  Error
RightCurly
  • option: "alone"
18  Error
coding HiddenField
  • ignoreConstructorParameter: "true"
  • ignoreSetter: "true"
3  Warning
MagicNumber
  • ignoreNumbers: "-4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 31, 32, 37, 64, 100, 128, 256, 512, 1000, 1024"
1  Error
RedundantThrows 2  Error
header RegexpHeader
  • fileExtensions: "java"
  • headerFile: "target/checkstyle-header.txt"
3  Error
imports AvoidStarImport 2  Error
javadoc JavadocMethod
  • scope: "protected"
41  Warning
JavadocType
  • allowUnknownTags: "true"
  • scope: "protected"
1  Error
JavadocVariable
  • scope: "protected"
2  Info
naming ConstantName 2  Error
sizes LineLength
  • max: "120"
  • ignorePattern: "@version|@see|@todo|TODO"
41  Error
whitespace ParenPad
  • option: "space"
450  Error
WhitespaceAfter 4  Error
WhitespaceAround 26  Error

Details

org/apache/archiva/indexer/merger/base/DefaultIndexMerger.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^\s*$'. 2
 Error extension TreeWalker Got an exception - expecting EOF, found 'try' 94

org/apache/archiva/indexer/merger/base/DefaultMergedRemoteIndexesScheduler.java

Severity Category Rule Message Line
 Error extension TreeWalker Got an exception - expecting EOF, found 'MergedRemoteIndexesTaskRequest' 88

org/apache/archiva/indexer/merger/base/MergedRemoteIndexesTask.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 40
 Warning javadoc JavadocMethod Missing a Javadoc comment. 58

org/apache/archiva/indexer/merger/base/MergedRemoteIndexesTaskRequest.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 35
 Warning javadoc JavadocMethod Missing a Javadoc comment. 41
 Warning javadoc JavadocMethod Missing a Javadoc comment. 46
 Warning javadoc JavadocMethod Missing a Javadoc comment. 51
 Warning javadoc JavadocMethod Missing a Javadoc comment. 56

org/apache/archiva/indexer/merger/base/MergedRemoteIndexesTaskResult.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 32
 Warning javadoc JavadocMethod Missing a Javadoc comment. 37
 Warning javadoc JavadocMethod Missing a Javadoc comment. 42

org/apache/archiva/indexer/merger/base/TemporaryGroupIndexCleaner.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^\s*$'. 2
 Error extension TreeWalker Got an exception - expecting EOF, found 'indexMerger' 62

org/apache/archiva/repository/base/AbstractManagedRepository.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 44
 Error whitespace ParenPad ')' is not preceded with whitespace. 44
 Error sizes LineLength Line is longer than 120 characters (found 132). 49
 Warning javadoc JavadocMethod Missing a Javadoc comment. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error blocks LeftCurly '{' should be on a new line. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92

org/apache/archiva/repository/base/AbstractRemoteRepository.java

Severity Category Rule Message Line
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 46
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 47
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 48
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 49
 Error coding MagicNumber '60' is a magic number. 50
 Warning javadoc JavadocMethod Missing a Javadoc comment. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error sizes LineLength Line is longer than 120 characters (found 131). 59
 Warning javadoc JavadocMethod Missing a Javadoc comment. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error whitespace ParenPad ')' is not preceded with whitespace. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error blocks LeftCurly '{' should be on a new line. 115
 Warning javadoc JavadocMethod Expected an @return tag. 153
 Error blocks LeftCurly '{' should be on a new line. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 155
 Error whitespace ParenPad ')' is not preceded with whitespace. 155
 Error blocks LeftCurly '{' should be on a new line. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 161
 Error whitespace ParenPad ')' is not preceded with whitespace. 161
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 166
 Error whitespace ParenPad ')' is not preceded with whitespace. 166
 Error blocks LeftCurly '{' should be on a new line. 166

org/apache/archiva/repository/base/AbstractRepository.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.archiva.repository.event.*. 35
 Error whitespace ParenPad '(' is not followed by whitespace. 69
 Error whitespace ParenPad ')' is not preceded with whitespace. 69
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error whitespace ParenPad '(' is not followed by whitespace. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 Info javadoc JavadocVariable Missing a Javadoc comment. 80
 Info javadoc JavadocVariable Missing a Javadoc comment. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Warning javadoc JavadocMethod Missing a Javadoc comment. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 96
 Error whitespace ParenPad ')' is not preceded with whitespace. 96
 Error blocks LeftCurly '{' should be on a new line. 96
 Error whitespace ParenPad ')' is not preceded with whitespace. 98
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error sizes LineLength Line is longer than 120 characters (found 135). 106
 Warning javadoc JavadocMethod Missing a Javadoc comment. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 106
 Error blocks LeftCurly '{' should be on a new line. 106
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error whitespace ParenPad ')' is not preceded with whitespace. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Warning javadoc JavadocMethod Missing a Javadoc comment. 117
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error blocks LeftCurly '{' should be on a new line. 117
 Error whitespace ParenPad '(' is not followed by whitespace. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error blocks LeftCurly '{' should be on a new line. 164
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error sizes LineLength Line is longer than 120 characters (found 128). 200
 Error coding RedundantThrows Redundant throws: 'UnsupportedFeatureException' is unchecked exception. 200
 Error whitespace ParenPad '(' is not followed by whitespace. 202
 Error whitespace ParenPad ')' is not preceded with whitespace. 202
 Error blocks LeftCurly '{' should be on a new line. 202
 Error whitespace ParenPad '(' is not followed by whitespace. 203
 Error whitespace ParenPad ')' is not preceded with whitespace. 203
 Error blocks RightCurly '}' should be alone on a line. 204
 Error whitespace ParenPad '(' is not followed by whitespace. 225
 Error whitespace ParenPad ')' is not preceded with whitespace. 225
 Error whitespace ParenPad '(' is not followed by whitespace. 231
 Error whitespace ParenPad ')' is not preceded with whitespace. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 237
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 237
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 237
 Error whitespace ParenPad '(' is not followed by whitespace. 237
 Error whitespace ParenPad ')' is not preceded with whitespace. 237
 Error whitespace ParenPad ')' is not preceded with whitespace. 237
 Error whitespace ParenPad ')' is not preceded with whitespace. 237
 Error blocks LeftCurly '{' should be on a new line. 237
 Error blocks LeftCurly '{' should be on a new line. 238
 Error whitespace ParenPad '(' is not followed by whitespace. 239
 Error whitespace ParenPad ')' is not preceded with whitespace. 239
 Error blocks RightCurly '}' should be alone on a line. 240
 Error whitespace ParenPad '(' is not followed by whitespace. 240
 Error whitespace ParenPad ')' is not preceded with whitespace. 240
 Error blocks LeftCurly '{' should be on a new line. 240
 Error whitespace ParenPad '(' is not followed by whitespace. 241
 Error whitespace ParenPad ')' is not preceded with whitespace. 241
 Error whitespace ParenPad '(' is not followed by whitespace. 247
 Error whitespace ParenPad ')' is not preceded with whitespace. 247
 Error blocks LeftCurly '{' should be on a new line. 247
 Error whitespace ParenPad '(' is not followed by whitespace. 248
 Error whitespace ParenPad ')' is not preceded with whitespace. 248
 Warning coding HiddenField 'location' hides a field. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 255
 Error whitespace ParenPad ')' is not preceded with whitespace. 255
 Warning coding HiddenField 'location' hides a field. 259
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with whitespace. 283
 Error blocks LeftCurly '{' should be on a new line. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error blocks LeftCurly '{' should be on a new line. 288
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Warning javadoc JavadocMethod Missing a Javadoc comment. 297
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error whitespace ParenPad ')' is not preceded with whitespace. 298
 Error blocks LeftCurly '{' should be on a new line. 298
 Error whitespace ParenPad ')' is not preceded with whitespace. 299
 Error whitespace ParenPad '(' is not followed by whitespace. 303
 Error whitespace ParenPad ')' is not preceded with whitespace. 303
 Error blocks LeftCurly '{' should be on a new line. 303
 Error whitespace ParenPad '(' is not followed by whitespace. 304
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 304
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 304
 Error whitespace ParenPad ')' is not preceded with whitespace. 304
 Error blocks LeftCurly '{' should be on a new line. 304
 Error blocks EmptyBlock Empty if block. 304
 Error blocks LeftCurly '{' should be on a new line. 311
 Error blocks LeftCurly '{' should be on a new line. 316
 Error whitespace ParenPad '(' is not followed by whitespace. 317
 Error whitespace ParenPad '(' is not followed by whitespace. 317
 Error whitespace ParenPad ')' is not preceded with whitespace. 317
 Error whitespace ParenPad ')' is not preceded with whitespace. 317
 Error blocks LeftCurly '{' should be on a new line. 317
 Error whitespace ParenPad '(' is not followed by whitespace. 319
 Error whitespace ParenPad ')' is not preceded with whitespace. 319
 Error blocks LeftCurly '{' should be on a new line. 319
 Error blocks LeftCurly '{' should be on a new line. 320
 Error blocks RightCurly '}' should be alone on a line. 322
 Error whitespace ParenPad '(' is not followed by whitespace. 322
 Error whitespace ParenPad ')' is not preceded with whitespace. 322
 Error blocks LeftCurly '{' should be on a new line. 322
 Error whitespace ParenPad '(' is not followed by whitespace. 323
 Error whitespace ParenPad ')' is not preceded with whitespace. 323
 Error whitespace ParenPad '(' is not followed by whitespace. 328
 Error whitespace ParenPad '(' is not followed by whitespace. 328
 Error whitespace ParenPad ')' is not preceded with whitespace. 328
 Error whitespace ParenPad ')' is not preceded with whitespace. 328
 Error blocks LeftCurly '{' should be on a new line. 328
 Error whitespace ParenPad '(' is not followed by whitespace. 329
 Error whitespace ParenPad ')' is not preceded with whitespace. 329
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 330
 Error blocks LeftCurly '{' should be on a new line. 330
 Error blocks LeftCurly '{' should be on a new line. 339
 Error whitespace ParenPad '(' is not followed by whitespace. 344
 Error whitespace ParenPad ')' is not preceded with whitespace. 344
 Error blocks LeftCurly '{' should be on a new line. 344
 Error whitespace ParenPad '(' is not followed by whitespace. 346
 Error whitespace ParenPad ')' is not preceded with whitespace. 346
 Error whitespace ParenPad ')' is not preceded with whitespace. 350
 Error blocks LeftCurly '{' should be on a new line. 350
 Error whitespace ParenPad '(' is not followed by whitespace. 351
 Error whitespace ParenPad '(' is not followed by whitespace. 351
 Error whitespace ParenPad ')' is not preceded with whitespace. 351
 Error whitespace ParenPad ')' is not preceded with whitespace. 351
 Error blocks LeftCurly '{' should be on a new line. 351
 Error whitespace ParenPad '(' is not followed by whitespace. 352
 Error whitespace ParenPad ')' is not preceded with whitespace. 352
 Error whitespace ParenPad '(' is not followed by whitespace. 354
 Error whitespace ParenPad ')' is not preceded with whitespace. 354
 Error whitespace ParenPad '(' is not followed by whitespace. 358
 Warning coding HiddenField 'type' hides a field. 358
 Error whitespace ParenPad ')' is not preceded with whitespace. 358
 Error blocks LeftCurly '{' should be on a new line. 358
 Error whitespace ParenPad '(' is not followed by whitespace. 359
 Error whitespace ParenPad ')' is not preceded with whitespace. 359
 Error whitespace ParenPad '(' is not followed by whitespace. 363
 Error whitespace ParenPad '(' is not followed by whitespace. 365
 Error whitespace ParenPad ')' is not preceded with whitespace. 365
 Error whitespace ParenPad '(' is not followed by whitespace. 371
 Error whitespace ParenPad ')' is not preceded with whitespace. 371
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error sizes LineLength Line is longer than 120 characters (found 122). 381
 Error whitespace ParenPad '(' is not followed by whitespace. 383
 Error whitespace ParenPad ')' is not preceded with whitespace. 383
 Error sizes LineLength Line is longer than 120 characters (found 122). 393
 Error whitespace ParenPad '(' is not followed by whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 401
 Error sizes LineLength Line is longer than 120 characters (found 125). 405
 Error whitespace ParenPad '(' is not followed by whitespace. 405
 Error whitespace ParenPad '(' is not followed by whitespace. 407
 Error whitespace ParenPad ')' is not preceded with whitespace. 407
 Error sizes LineLength Line is longer than 120 characters (found 145). 411
 Error sizes LineLength Line is longer than 120 characters (found 126). 417
 Error sizes LineLength Line is longer than 120 characters (found 142). 423
 Warning javadoc JavadocMethod Missing a Javadoc comment. 428
 Error whitespace ParenPad ')' is not preceded with whitespace. 428
 Error blocks LeftCurly '{' should be on a new line. 428
 Warning javadoc JavadocMethod Missing a Javadoc comment. 432
 Error blocks LeftCurly '{' should be on a new line. 432

org/apache/archiva/repository/base/AbstractRepositoryGroup.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 49
 Error whitespace ParenPad ')' is not preceded with whitespace. 49
 Error blocks LeftCurly '{' should be on a new line. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error sizes LineLength Line is longer than 120 characters (found 130). 53
 Warning javadoc JavadocMethod Missing a Javadoc comment. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' should be on a new line. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error blocks LeftCurly '{' should be on a new line. 58
 Error blocks LeftCurly '{' should be on a new line. 63
 Error blocks LeftCurly '{' should be on a new line. 69
 Error blocks LeftCurly '{' should be on a new line. 71
 Error blocks RightCurly '}' should be alone on a line. 73
 Error blocks LeftCurly '{' should be on a new line. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 Error blocks LeftCurly '{' should be on a new line. 79
 Error blocks LeftCurly '{' should be on a new line. 81
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 83
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error blocks LeftCurly '{' should be on a new line. 83
 Error blocks NeedBraces 'if' construct must use '{}'s. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 84
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 84
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 84
 Error whitespace ParenPad ')' is not preceded with whitespace. 84
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error blocks RightCurly '}' should be alone on a line. 87
 Error blocks LeftCurly '{' should be on a new line. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error blocks LeftCurly '{' should be on a new line. 93
 Error blocks LeftCurly '{' should be on a new line. 95
 Error blocks NeedBraces 'if' construct must use '{}'s. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 96
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 96
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 96
 Error whitespace ParenPad ')' is not preceded with whitespace. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 97
 Error blocks RightCurly '}' should be alone on a line. 98
 Error blocks LeftCurly '{' should be on a new line. 98
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error blocks LeftCurly '{' should be on a new line. 104
 Error blocks LeftCurly '{' should be on a new line. 106
 Error blocks NeedBraces 'if' construct must use '{}'s. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 107
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 107
 Error whitespace ParenPad ')' is not preceded with whitespace. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error blocks RightCurly '}' should be alone on a line. 109
 Error blocks LeftCurly '{' should be on a new line. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error blocks LeftCurly '{' should be on a new line. 115
 Error blocks LeftCurly '{' should be on a new line. 117
 Error whitespace ParenPad '(' is not followed by whitespace. 118
 Error whitespace ParenPad ')' is not preceded with whitespace. 118
 Error blocks RightCurly '}' should be alone on a line. 119
 Error blocks LeftCurly '{' should be on a new line. 119
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error blocks LeftCurly '{' should be on a new line. 125
 Error blocks LeftCurly '{' should be on a new line. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128
 Error blocks RightCurly '}' should be alone on a line. 129
 Error blocks LeftCurly '{' should be on a new line. 129
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error blocks LeftCurly '{' should be on a new line. 135
 Error blocks LeftCurly '{' should be on a new line. 140
 Error blocks LeftCurly '{' should be on a new line. 142
 Error blocks RightCurly '}' should be alone on a line. 144
 Error blocks LeftCurly '{' should be on a new line. 144
 Error whitespace ParenPad '(' is not followed by whitespace. 150
 Error whitespace ParenPad ')' is not preceded with whitespace. 150
 Error blocks LeftCurly '{' should be on a new line. 150
 Error blocks LeftCurly '{' should be on a new line. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error blocks RightCurly '}' should be alone on a line. 154
 Error blocks LeftCurly '{' should be on a new line. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 160
 Error whitespace ParenPad ')' is not preceded with whitespace. 160
 Error blocks LeftCurly '{' should be on a new line. 160
 Error blocks LeftCurly '{' should be on a new line. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 163
 Error whitespace ParenPad ')' is not preceded with whitespace. 163
 Error blocks RightCurly '}' should be alone on a line. 164
 Error blocks LeftCurly '{' should be on a new line. 164
 Error blocks LeftCurly '{' should be on a new line. 170
 Warning javadoc JavadocMethod Missing a Javadoc comment. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error blocks LeftCurly '{' should be on a new line. 174

org/apache/archiva/repository/base/ArchivaRepositoryRegistry.java

Severity Category Rule Message Line
 Error extension TreeWalker Got an exception - expecting EOF, found '}' 169

org/apache/archiva/repository/base/ArchivaRepositoryRegistryTest.java

Severity Category Rule Message Line
 Error extension TreeWalker Got an exception - expecting EOF, found 'assertTrue' 125

org/apache/archiva/repository/base/BasicManagedRepository.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Warning javadoc JavadocMethod Missing a Javadoc comment. 61
 Error sizes LineLength Line is longer than 120 characters (found 139). 67
 Warning javadoc JavadocMethod Missing a Javadoc comment. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 69
 Error blocks LeftCurly '{' should be on a new line. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error blocks LeftCurly '{' should be on a new line. 94
 Error sizes LineLength Line is longer than 120 characters (found 128). 107
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace ParenPad ')' is not preceded with whitespace. 107
 Warning javadoc JavadocMethod Expected @throws tag for 'IOException'. 107
 Error blocks LeftCurly '{' should be on a new line. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 109
 Error whitespace ParenPad ')' is not preceded with whitespace. 109
 Error whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110

org/apache/archiva/repository/base/BasicRemoteRepository.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 48
 Error whitespace ParenPad ')' is not preceded with whitespace. 48
 Error whitespace ParenPad '(' is not followed by whitespace. 51
 Error whitespace ParenPad ')' is not preceded with whitespace. 51
 Warning javadoc JavadocMethod Missing a Javadoc comment. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 63
 Error sizes LineLength Line is longer than 120 characters (found 128). 67
 Warning javadoc JavadocMethod Missing a Javadoc comment. 67
 Error blocks LeftCurly '{' should be on a new line. 73
 Error sizes LineLength Line is longer than 120 characters (found 121). 91
 Warning javadoc JavadocMethod Missing a Javadoc comment. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error blocks LeftCurly '{' should be on a new line. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error whitespace ParenPad '(' is not followed by whitespace. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94

org/apache/archiva/repository/base/PasswordCredentials.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 32
 Error whitespace ParenPad '(' is not followed by whitespace. 32
 Error whitespace ParenPad ')' is not preceded with whitespace. 32
 Error blocks LeftCurly '{' should be on a new line. 32
 Warning javadoc JavadocMethod Missing a Javadoc comment. 37
 Warning javadoc JavadocMethod Missing a Javadoc comment. 42
 Warning javadoc JavadocMethod Missing a Javadoc comment. 47
 Warning javadoc JavadocMethod Missing a Javadoc comment. 52
 Error blocks LeftCurly '{' should be on a new line. 58
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 59
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 59
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 59
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 59

org/apache/archiva/repository/content/base/ArtifactClassifierMapping.java

Severity Category Rule Message Line
 Error naming ConstantName Name 'typeToClassifierMap' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 34
 Warning javadoc JavadocMethod Missing a Javadoc comment. 45

org/apache/archiva/repository/content/base/ArtifactUtil.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^\s*$'. 2
 Error blocks LeftCurly '{' should be on a new line. 37
 Error sizes LineLength Line is longer than 120 characters (found 127). 51
 Error whitespace ParenPad '(' is not followed by whitespace. 51
 Error whitespace ParenPad ')' is not preceded with whitespace. 51
 Warning javadoc JavadocMethod Expected @throws tag for 'RepositoryException'. 51
 Error blocks LeftCurly '{' should be on a new line. 51
 Error whitespace ParenPad '(' is not followed by whitespace. 52
 Error whitespace ParenPad ')' is not preceded with whitespace. 52
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Error sizes LineLength Line is longer than 120 characters (found 136). 66
 Error whitespace ParenPad '(' is not followed by whitespace. 66
 Error whitespace ParenPad ')' is not preceded with whitespace. 66
 Warning javadoc JavadocMethod Expected @throws tag for 'RepositoryException'. 66
 Error blocks LeftCurly '{' should be on a new line. 66
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 69
 Error whitespace ParenPad ')' is not preceded with whitespace. 69

org/apache/archiva/repository/metadata/base/MetadataTools.java

Severity Category Rule Message Line
 Error extension TreeWalker Got an exception - expecting EOF, found '}' 490

org/apache/archiva/repository/metadata/base/RepositoryMetadataMerge.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 39
 Error whitespace ParenPad '(' is not followed by whitespace. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error whitespace ParenPad '(' is not followed by whitespace. 57
 Error whitespace ParenPad ')' is not preceded with whitespace. 57
 Error sizes LineLength Line is longer than 120 characters (found 140). 60
 Error whitespace ParenPad ')' is not preceded with whitespace. 64
 Error whitespace ParenPad '(' is not followed by whitespace. 65
 Error whitespace ParenPad ')' is not preceded with whitespace. 65
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error whitespace ParenPad '(' is not followed by whitespace. 85
 Error whitespace ParenPad ')' is not preceded with whitespace. 85
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 90
 Error whitespace ParenPad ')' is not preceded with whitespace. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error whitespace ParenPad '(' is not followed by whitespace. 95
 Error whitespace ParenPad ')' is not preceded with whitespace. 95
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad ')' is not preceded with whitespace. 100
 Error whitespace ParenPad '(' is not followed by whitespace. 103
 Error whitespace ParenPad ')' is not preceded with whitespace. 103
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error whitespace ParenPad '(' is not followed by whitespace. 123
 Error whitespace ParenPad ')' is not preceded with whitespace. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 129
 Error whitespace ParenPad '(' is not followed by whitespace. 130
 Error whitespace ParenPad ')' is not preceded with whitespace. 130
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad ')' is not preceded with whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error whitespace ParenPad ')' is not preceded with whitespace. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 143
 Error whitespace ParenPad ')' is not preceded with whitespace. 143
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 Error whitespace ParenPad '(' is not followed by whitespace. 155
 Error whitespace ParenPad ')' is not preceded with whitespace. 155
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 173
 Error whitespace ParenPad ')' is not preceded with whitespace. 173
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 209
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 220
 Error whitespace ParenPad ')' is not preceded with whitespace. 220
 Error whitespace ParenPad '(' is not followed by whitespace. 221
 Error whitespace ParenPad ')' is not preceded with whitespace. 221
 Error whitespace ParenPad '(' is not followed by whitespace. 222
 Error whitespace ParenPad ')' is not preceded with whitespace. 222
 Error sizes LineLength Line is longer than 120 characters (found 130). 228

org/apache/archiva/repository/metadata/base/RepositoryMetadataWriter.java

Severity Category Rule Message Line
 Error naming ConstantName Name 'log' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 50
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Warning javadoc JavadocMethod Missing a Javadoc comment. 52
 Error whitespace ParenPad '(' is not followed by whitespace. 56
 Error whitespace ParenPad '(' is not followed by whitespace. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error blocks LeftCurly '{' should be on a new line. 71
 Error whitespace ParenPad '(' is not followed by whitespace. 72
 Error whitespace ParenPad ')' is not preceded with whitespace. 72
 Error blocks RightCurly '}' should be alone on a line. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 73
 Error whitespace ParenPad ')' is not preceded with whitespace. 73
 Error blocks LeftCurly '{' should be on a new line. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Warning javadoc JavadocMethod Missing a Javadoc comment. 80
 Error blocks LeftCurly '{' should be on a new line. 84
 Error blocks RightCurly '}' should be alone on a line. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error blocks LeftCurly '{' should be on a new line. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 Error whitespace ParenPad '(' is not followed by whitespace. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error whitespace ParenPad '(' is not followed by whitespace. 107
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 119
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 134
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 163

org/apache/archiva/repository/mock/ArchivaIndexManagerMock.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 37
 Error whitespace ParenPad ')' is not preceded with whitespace. 37
 Error blocks LeftCurly '{' should be on a new line. 38
 Error whitespace ParenPad '(' is not followed by whitespace. 43
 Error whitespace ParenPad ')' is not preceded with whitespace. 43
 Error blocks LeftCurly '{' should be on a new line. 43
 Error whitespace ParenPad '(' is not followed by whitespace. 48
 Error whitespace ParenPad ')' is not preceded with whitespace. 48
 Error blocks LeftCurly '{' should be on a new line. 48
 Error whitespace ParenPad '(' is not followed by whitespace. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error blocks LeftCurly '{' should be on a new line. 53
 Error sizes LineLength Line is longer than 120 characters (found 138). 58
 Error whitespace ParenPad '(' is not followed by whitespace. 58
 Error whitespace ParenPad ')' is not preceded with whitespace. 58
 Error blocks LeftCurly '{' should be on a new line. 58
 Error sizes LineLength Line is longer than 120 characters (found 143). 63
 Error whitespace ParenPad '(' is not followed by whitespace. 63
 Error whitespace ParenPad ')' is not preceded with whitespace. 63
 Error blocks LeftCurly '{' should be on a new line. 63
 Error whitespace ParenPad '(' is not followed by whitespace. 68
 Error whitespace ParenPad ')' is not preceded with whitespace. 68
 Error blocks LeftCurly '{' should be on a new line. 68
 Error whitespace ParenPad '(' is not followed by whitespace. 73
 Error whitespace ParenPad ')' is not preceded with whitespace. 73
 Error blocks LeftCurly '{' should be on a new line. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error whitespace ParenPad ')' is not preceded with whitespace. 78
 Error blocks LeftCurly '{' should be on a new line. 78
 Error sizes LineLength Line is longer than 120 characters (found 125). 83
 Error whitespace ParenPad '(' is not followed by whitespace. 83
 Error whitespace ParenPad ')' is not preceded with whitespace. 83
 Error blocks LeftCurly '{' should be on a new line. 83
 Error whitespace ParenPad '(' is not followed by whitespace. 88
 Error whitespace ParenPad ')' is not preceded with whitespace. 88
 Error blocks LeftCurly '{' should be on a new line. 88
 Error sizes LineLength Line is longer than 120 characters (found 202). 93
 Error whitespace ParenPad '(' is not followed by whitespace. 93
 Error whitespace ParenPad ')' is not preceded with whitespace. 93
 Error coding RedundantThrows Redundant throws: 'UnsupportedOperationException' is unchecked exception. 93
 Error blocks LeftCurly '{' should be on a new line. 93

org/apache/archiva/repository/mock/ManagedRepositoryContentMock.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 39
 Error whitespace ParenPad ')' is not preceded with whitespace. 39

org/apache/archiva/repository/mock/RemoteRepositoryContentMock.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 32
 Error whitespace ParenPad ')' is not preceded with whitespace. 32

org/apache/archiva/repository/mock/RepositoryContentProviderMock.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 36
 Error whitespace ParenPad '(' is not followed by whitespace. 36
 Error whitespace ParenPad ')' is not preceded with whitespace. 36
 Error blocks LeftCurly '{' should be on a new line. 37
 Error whitespace ParenPad '(' is not followed by whitespace. 41
 Error whitespace ParenPad ')' is not preceded with whitespace. 41
 Error whitespace ParenPad '(' is not followed by whitespace. 42
 Error whitespace ParenPad ')' is not preceded with whitespace. 42
 Error whitespace ParenPad '(' is not followed by whitespace. 46
 Error whitespace ParenPad ')' is not preceded with whitespace. 46
 Error blocks LeftCurly '{' should be on a new line. 46
 Error blocks LeftCurly '{' should be on a new line. 51
 Error whitespace ParenPad '(' is not followed by whitespace. 56
 Error whitespace ParenPad ')' is not preceded with whitespace. 56
 Error blocks LeftCurly '{' should be on a new line. 56
 Error whitespace ParenPad '(' is not followed by whitespace. 61
 Error whitespace ParenPad ')' is not preceded with whitespace. 61
 Error blocks LeftCurly '{' should be on a new line. 61
 Error whitespace ParenPad '(' is not followed by whitespace. 66
 Error whitespace ParenPad ')' is not preceded with whitespace. 66
 Error blocks LeftCurly '{' should be on a new line. 66
 Error sizes LineLength Line is longer than 120 characters (found 137). 71
 Error whitespace ParenPad '(' is not followed by whitespace. 71
 Error whitespace ParenPad ')' is not preceded with whitespace. 71
 Error blocks LeftCurly '{' should be on a new line. 71

org/apache/archiva/repository/mock/RepositoryProviderMock.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.archiva.repository.*. 25
 Error whitespace ParenPad '(' is not followed by whitespace. 47
 Error whitespace ParenPad ')' is not preceded with whitespace. 47
 Error blocks LeftCurly '{' should be on a new line. 66
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad '(' is not followed by whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error whitespace ParenPad ')' is not preceded with whitespace. 67
 Error blocks LeftCurly '{' should be on a new line. 73
 Error whitespace ParenPad '(' is not followed by whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error whitespace ParenPad ')' is not preceded with whitespace. 74
 Error blocks RightCurly '}' should be alone on a line. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 75
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error blocks LeftCurly '{' should be on a new line. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 76
 Error whitespace ParenPad ')' is not preceded with whitespace. 76
 Error whitespace ParenPad '(' is not followed by whitespace. 81
 Error whitespace ParenPad ')' is not preceded with whitespace. 81
 Error blocks LeftCurly '{' should be on a new line. 81
 Error sizes LineLength Line is longer than 120 characters (found 127). 86
 Error blocks LeftCurly '{' should be on a new line. 86
 Error blocks LeftCurly '{' should be on a new line. 88
 Error sizes LineLength Line is longer than 120 characters (found 190). 89
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error whitespace ParenPad ')' is not preceded with whitespace. 89
 Error blocks RightCurly '}' should be alone on a line. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 90
 Error whitespace ParenPad ')' is not preceded with whitespace. 90
 Error blocks LeftCurly '{' should be on a new line. 90
 Error whitespace ParenPad '(' is not followed by whitespace. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error sizes LineLength Line is longer than 120 characters (found 157). 99
 Error sizes LineLength Line is longer than 120 characters (found 125). 104
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 104
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 104
 Error whitespace WhitespaceAround '?' is not followed by whitespace. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error whitespace ParenPad ')' is not preceded with whitespace. 111
 Error blocks LeftCurly '{' should be on a new line. 111
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Error blocks LeftCurly '{' should be on a new line. 114
 Error sizes LineLength Line is longer than 120 characters (found 127). 136
 Error blocks LeftCurly '{' should be on a new line. 136
 Error blocks LeftCurly '{' should be on a new line. 139
 Error sizes LineLength Line is longer than 120 characters (found 152). 140
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error whitespace ParenPad ')' is not preceded with whitespace. 140
 Error blocks RightCurly '}' should be alone on a line. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error whitespace ParenPad ')' is not preceded with whitespace. 141
 Error blocks LeftCurly '{' should be on a new line. 141
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 145
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error whitespace ParenPad '(' is not followed by whitespace. 145
 Error whitespace ParenPad ')' is not preceded with whitespace. 145
 Error sizes LineLength Line is longer than 120 characters (found 122). 150
 Error blocks LeftCurly '{' should be on a new line. 153
 Error sizes LineLength Line is longer than 120 characters (found 156). 154
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error blocks RightCurly '}' should be alone on a line. 155
 Error whitespace ParenPad '(' is not followed by whitespace. 155
 Error whitespace ParenPad ')' is not preceded with whitespace. 155
 Error blocks LeftCurly '{' should be on a new line. 155
 Error whitespace ParenPad '(' is not followed by whitespace. 156
 Error whitespace ParenPad ')' is not preceded with whitespace. 156
 Error sizes LineLength Line is longer than 120 characters (found 153). 164
 Error sizes LineLength Line is longer than 120 characters (found 122). 177
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 177
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 177
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 179
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 179
 Error sizes LineLength Line is longer than 120 characters (found 121). 195
 Error whitespace ParenPad '(' is not followed by whitespace. 195
 Error whitespace ParenPad ')' is not preceded with whitespace. 195
 Error blocks LeftCurly '{' should be on a new line. 195
 Error sizes LineLength Line is longer than 120 characters (found 159). 200
 Error whitespace ParenPad '(' is not followed by whitespace. 200
 Error whitespace ParenPad ')' is not preceded with whitespace. 200
 Error blocks LeftCurly '{' should be on a new line. 200
 Error sizes LineLength Line is longer than 120 characters (found 131). 205
 Error whitespace ParenPad '(' is not followed by whitespace. 209
 Error whitespace ParenPad ')' is not preceded with whitespace. 209
 Error sizes LineLength Line is longer than 120 characters (found 129). 210
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error sizes LineLength Line is longer than 120 characters (found 133). 231
 Error whitespace ParenPad '(' is not followed by whitespace. 231
 Error whitespace ParenPad ')' is not preceded with whitespace. 231
 Error blocks LeftCurly '{' should be on a new line. 231
 Error sizes LineLength Line is longer than 120 characters (found 127). 237
 Error whitespace ParenPad '(' is not followed by whitespace. 250
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 250
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 250
 Error whitespace ParenPad ')' is not preceded with whitespace. 250
 Error sizes LineLength Line is longer than 120 characters (found 122). 256
 Error whitespace WhitespaceAround '==' is not preceded with whitespace. 260
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 260
 Error whitespace ParenPad '(' is not followed by whitespace. 266
 Error whitespace ParenPad ')' is not preceded with whitespace. 266
 Error blocks LeftCurly '{' should be on a new line. 266