This project has retired. For details please refer to its Attic page.
Archiva Base :: Configuration – 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
53 10 306 4305

Files

File  I  W  E
org/apache/archiva/configuration/AbstractRepositoryConfiguration.java 0 9 0
org/apache/archiva/configuration/AbstractRepositoryConnectorConfiguration.java 0 16 0
org/apache/archiva/configuration/ArchivaConfiguration.java 2 8 7
org/apache/archiva/configuration/ArchivaConfigurationMRM789Test.java 1 3 18
org/apache/archiva/configuration/ArchivaConfigurationTest.java 1 20 125
org/apache/archiva/configuration/ArchivaDefaultConfiguration.java 0 3 0
org/apache/archiva/configuration/ArchivaRuntimeConfiguration.java 0 12 35
org/apache/archiva/configuration/CacheConfiguration.java 0 4 0
org/apache/archiva/configuration/Configuration.java 0 41 9
org/apache/archiva/configuration/ConfigurationEvent.java 2 2 0
org/apache/archiva/configuration/ConfigurationListener.java 0 1 0
org/apache/archiva/configuration/ConfigurationNames.java 0 5 0
org/apache/archiva/configuration/ConfigurationRuntimeException.java 0 1 0
org/apache/archiva/configuration/ConfigurationTest.java 0 6 3
org/apache/archiva/configuration/DefaultArchivaConfiguration.java 0 12 781
org/apache/archiva/configuration/FileLockConfiguration.java 0 2 0
org/apache/archiva/configuration/FileType.java 0 4 0
org/apache/archiva/configuration/FileTypes.java 4 5 5
org/apache/archiva/configuration/FileTypesTest.java 0 2 1
org/apache/archiva/configuration/IndeterminateConfigurationException.java 0 1 0
org/apache/archiva/configuration/InvalidConfigurationException.java 0 3 0
org/apache/archiva/configuration/LdapConfiguration.java 0 15 0
org/apache/archiva/configuration/LdapGroupMapping.java 0 4 0
org/apache/archiva/configuration/LegacyArtifactPath.java 0 9 0
org/apache/archiva/configuration/LegacyArtifactPathTest.java 0 2 0
org/apache/archiva/configuration/ManagedRepositoryConfiguration.java 0 11 0
org/apache/archiva/configuration/MavenProxyPropertyLoader.java 0 2 0
org/apache/archiva/configuration/MavenProxyPropertyLoaderTest.java 0 3 4
org/apache/archiva/configuration/NetworkConfiguration.java 0 3 2
org/apache/archiva/configuration/NetworkProxyConfiguration.java 0 9 1
org/apache/archiva/configuration/OrganisationInformation.java 0 3 0
org/apache/archiva/configuration/ProxyConnectorConfiguration.java 0 1 0
org/apache/archiva/configuration/ProxyConnectorRuleConfiguration.java 0 5 0
org/apache/archiva/configuration/RedbackRuntimeConfiguration.java 0 16 0
org/apache/archiva/configuration/RemoteRepositoryConfiguration.java 0 18 3
org/apache/archiva/configuration/RepositoryCheckPath.java 0 2 0
org/apache/archiva/configuration/RepositoryGroupConfiguration.java 0 11 9
org/apache/archiva/configuration/RepositoryScanningConfiguration.java 0 9 0
org/apache/archiva/configuration/SyncConnectorConfiguration.java 0 2 0
org/apache/archiva/configuration/UserInterfaceOptions.java 0 5 0
org/apache/archiva/configuration/WebappConfiguration.java 0 1 0
org/apache/archiva/configuration/functors/FiletypeSelectionPredicate.java 0 1 0
org/apache/archiva/configuration/functors/FiletypeToMapClosure.java 0 1 0
org/apache/archiva/configuration/functors/NetworkProxySelectionPredicate.java 0 1 0
org/apache/archiva/configuration/functors/ProxyConnectorConfigurationOrderComparator.java 0 1 1
org/apache/archiva/configuration/functors/ProxyConnectorConfigurationOrderComparatorTest.java 0 3 0
org/apache/archiva/configuration/functors/ProxyConnectorSelectionPredicate.java 0 1 1
org/apache/archiva/configuration/functors/RepositoryConfigurationComparatorTest.java 0 1 0
org/apache/archiva/configuration/io/registry/ConfigurationRegistryReader.java 0 1 2001
org/apache/archiva/configuration/io/registry/ConfigurationRegistryWriter.java 0 1 1033
org/apache/archiva/configuration/util/PathMatcher.java 0 4 266

Rules

Category Rule Violations Severity
blocks LeftCurly
  • option: "nl"
727  Error
NeedBraces 1  Error
RightCurly
  • option: "alone"
27  Error
coding HiddenField
  • ignoreConstructorParameter: "true"
  • ignoreSetter: "true"
6  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"
14  Error
header RegexpHeader
  • fileExtensions: "java"
  • headerFile: "target/checkstyle-header.txt"
2  Error
imports AvoidStarImport 7  Error
UnusedImports 1  Error
javadoc JavadocMethod
  • scope: "protected"
300  Warning
JavadocType
  • allowUnknownTags: "true"
  • scope: "protected"
1  Error
JavadocVariable
  • scope: "protected"
10  Info
modifier RedundantModifier 7  Error
naming StaticVariableName 3  Error
sizes LineLength
  • max: "120"
  • ignorePattern: "@version|@see|@todo|TODO"
68  Error
MethodLength 3  Error
whitespace OperatorWrap 1  Error
ParenPad
  • option: "space"
3430  Error
WhitespaceAfter 3  Error
WhitespaceAround 10  Error

Details

org/apache/archiva/configuration/AbstractRepositoryConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'description'. 170
 Warning javadoc JavadocMethod Expected @param tag for 'id'. 180
 Warning javadoc JavadocMethod Expected @param tag for 'indexDir'. 190
 Warning javadoc JavadocMethod Expected @param tag for 'layout'. 201
 Warning javadoc JavadocMethod Expected @param tag for 'name'. 211
 Warning javadoc JavadocMethod Expected @param tag for 'packedIndexDir'. 221
 Warning javadoc JavadocMethod Expected @param tag for 'type'. 231
 Warning javadoc JavadocMethod Missing a Javadoc comment. 237
 Warning javadoc JavadocMethod Missing a Javadoc comment. 244

org/apache/archiva/configuration/AbstractRepositoryConnectorConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 95
 Warning javadoc JavadocMethod Expected @param tag for 'key'. 106
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 106
 Warning javadoc JavadocMethod Expected @param tag for 'key'. 117
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 117
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 127
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 238
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 248
 Warning javadoc JavadocMethod Expected @param tag for 'blackListPatterns'. 258
 Warning javadoc JavadocMethod Expected @param tag for 'disabled'. 269
 Warning javadoc JavadocMethod Expected @param tag for 'policies'. 279
 Warning javadoc JavadocMethod Expected @param tag for 'properties'. 289
 Warning javadoc JavadocMethod Expected @param tag for 'proxyId'. 299
 Warning javadoc JavadocMethod Expected @param tag for 'sourceRepoId'. 309
 Warning javadoc JavadocMethod Expected @param tag for 'targetRepoId'. 319
 Warning javadoc JavadocMethod Expected @param tag for 'whiteListPatterns'. 329

org/apache/archiva/configuration/ArchivaConfiguration.java

Severity Category Rule Message Line
 Info javadoc JavadocVariable Missing a Javadoc comment. 36
 Info javadoc JavadocVariable Missing a Javadoc comment. 37
 Warning javadoc JavadocMethod Missing a Javadoc comment. 89
 Warning javadoc JavadocMethod Missing a Javadoc comment. 98
 Error modifier RedundantModifier Redundant 'public' modifier. 98
 Warning javadoc JavadocMethod Missing a Javadoc comment. 100
 Error modifier RedundantModifier Redundant 'public' modifier. 100
 Warning javadoc JavadocMethod Missing a Javadoc comment. 102
 Error modifier RedundantModifier Redundant 'public' modifier. 102
 Warning javadoc JavadocMethod Expected an @return tag. 108
 Error modifier RedundantModifier Redundant 'public' modifier. 108
 Warning javadoc JavadocMethod Expected an @return tag. 114
 Error modifier RedundantModifier Redundant 'public' modifier. 114
 Warning javadoc JavadocMethod Expected an @return tag. 120
 Error modifier RedundantModifier Redundant 'public' modifier. 120
 Warning javadoc JavadocMethod Expected an @return tag. 126
 Error modifier RedundantModifier Redundant 'public' modifier. 126

org/apache/archiva/configuration/ArchivaConfigurationMRM789Test.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.junit.Assert.*. 37
 Error naming StaticVariableName Name 'FILE_ENCODING' must match pattern '^[a-z][a-zA-Z0-9]*$'. 47
 Info javadoc JavadocVariable Missing a Javadoc comment. 49
 Warning javadoc JavadocMethod Missing a Javadoc comment. 55
 Warning javadoc JavadocMethod Missing a Javadoc comment. 60
 Warning javadoc JavadocMethod Missing a Javadoc comment. 67
 Error sizes LineLength Line is longer than 120 characters (found 130). 71
 Error whitespace ParenPad '(' is not followed by whitespace. 72
 Error whitespace ParenPad ')' is not preceded with whitespace. 72
 Error sizes LineLength Line is longer than 120 characters (found 124). 74
 Error whitespace ParenPad '(' is not followed by whitespace. 75
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error sizes LineLength Line is longer than 120 characters (found 133). 78
 Error sizes LineLength Line is longer than 120 characters (found 149). 80
 Error sizes LineLength Line is longer than 120 characters (found 140). 83
 Error sizes LineLength Line is longer than 120 characters (found 122). 85
 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. 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

org/apache/archiva/configuration/ArchivaConfigurationTest.java

Severity Category Rule Message Line
 Error imports UnusedImports Unused import - java.nio.file.FileSystems. 37
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.easymock.EasyMock.*. 43
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.junit.Assert.*. 44
 Error whitespace ParenPad '(' is not followed by whitespace. 49
 Error whitespace ParenPad ')' is not preceded with whitespace. 49
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error whitespace ParenPad '(' is not followed by whitespace. 51
 Error whitespace ParenPad ')' is not preceded with whitespace. 51
 Info javadoc JavadocVariable Missing a Javadoc comment. 57
 Warning javadoc JavadocMethod Missing a Javadoc comment. 63
 Warning javadoc JavadocMethod Missing a Javadoc comment. 68
 Warning javadoc JavadocMethod Missing a Javadoc comment. 74
 Warning javadoc JavadocMethod Missing a Javadoc comment. 94
 Warning javadoc JavadocMethod Missing a Javadoc comment. 147
 Warning javadoc JavadocMethod Missing a Javadoc comment. 172
 Warning javadoc JavadocMethod Missing a Javadoc comment. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 203
 Error whitespace ParenPad ')' is not preceded with whitespace. 203
 Error whitespace ParenPad '(' is not followed by whitespace. 204
 Error whitespace ParenPad ')' is not preceded with whitespace. 204
 Error whitespace ParenPad '(' is not followed by whitespace. 233
 Error whitespace ParenPad ')' is not preceded with whitespace. 233
 Error whitespace WhitespaceAfter ';' is not followed by whitespace. 249
 Warning javadoc JavadocMethod Missing a Javadoc comment. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 258
 Error whitespace ParenPad ')' is not preceded with whitespace. 258
 Error whitespace ParenPad '(' is not followed by whitespace. 262
 Error whitespace ParenPad ')' is not preceded with whitespace. 262
 Error whitespace ParenPad '(' is not followed by whitespace. 264
 Error whitespace ParenPad ')' is not preceded with whitespace. 264
 Error whitespace ParenPad '(' is not followed by whitespace. 276
 Error whitespace ParenPad ')' is not preceded with whitespace. 276
 Error whitespace ParenPad '(' is not followed by whitespace. 277
 Error whitespace ParenPad ')' is not preceded with whitespace. 277
 Warning javadoc JavadocMethod Missing a Javadoc comment. 284
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 293
 Error whitespace ParenPad ')' is not preceded with whitespace. 293
 Error whitespace ParenPad '(' is not followed by whitespace. 294
 Error whitespace ParenPad ')' is not preceded with whitespace. 294
 Error whitespace ParenPad '(' is not followed by whitespace. 317
 Error whitespace ParenPad ')' is not preceded with whitespace. 317
 Error whitespace ParenPad '(' is not followed by whitespace. 318
 Error whitespace ParenPad ')' is not preceded with whitespace. 318
 Warning javadoc JavadocMethod Missing a Javadoc comment. 325
 Error whitespace ParenPad '(' is not followed by whitespace. 332
 Error whitespace ParenPad ')' is not preceded with whitespace. 332
 Error whitespace ParenPad '(' is not followed by whitespace. 333
 Error whitespace ParenPad ')' is not preceded with whitespace. 333
 Error blocks LeftCurly '{' should be on a new line. 333
 Error blocks RightCurly '}' should be alone on a line. 335
 Error blocks NeedBraces 'if' construct must use '{}'s. 338
 Warning javadoc JavadocMethod Missing a Javadoc comment. 350
 Error whitespace ParenPad '(' is not followed by whitespace. 355
 Error whitespace ParenPad ')' is not preceded with whitespace. 355
 Error whitespace ParenPad '(' is not followed by whitespace. 356
 Error whitespace ParenPad ')' is not preceded with whitespace. 356
 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. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 362
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error whitespace ParenPad '(' is not followed by whitespace. 378
 Error whitespace ParenPad ')' is not preceded with whitespace. 378
 Warning javadoc JavadocMethod Missing a Javadoc comment. 385
 Error whitespace ParenPad '(' is not followed by whitespace. 390
 Error whitespace ParenPad ')' is not preceded with whitespace. 390
 Error whitespace ParenPad '(' is not followed by whitespace. 391
 Error whitespace ParenPad ')' is not preceded with whitespace. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 394
 Error whitespace ParenPad ')' is not preceded with whitespace. 394
 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. 400
 Error whitespace ParenPad '(' is not followed by whitespace. 414
 Error whitespace ParenPad ')' is not preceded with whitespace. 414
 Error whitespace ParenPad '(' is not followed by whitespace. 417
 Error whitespace ParenPad ')' is not preceded with whitespace. 417
 Error sizes LineLength Line is longer than 120 characters (found 128). 419
 Warning javadoc JavadocMethod Missing a Javadoc comment. 426
 Error whitespace ParenPad '(' is not followed by whitespace. 431
 Error whitespace ParenPad ')' is not preceded with whitespace. 431
 Error whitespace ParenPad '(' is not followed by whitespace. 432
 Error whitespace ParenPad ')' is not preceded with whitespace. 432
 Error whitespace ParenPad '(' is not followed by whitespace. 435
 Error whitespace ParenPad ')' is not preceded with whitespace. 435
 Error whitespace ParenPad '(' is not followed by whitespace. 436
 Error whitespace ParenPad ')' is not preceded with whitespace. 436
 Error whitespace ParenPad '(' is not followed by whitespace. 441
 Error whitespace ParenPad ')' is not preceded with whitespace. 441
 Error whitespace ParenPad '(' is not followed by whitespace. 455
 Error whitespace ParenPad ')' is not preceded with whitespace. 455
 Error whitespace ParenPad '(' is not followed by whitespace. 458
 Error whitespace ParenPad ')' is not preceded with whitespace. 458
 Error sizes LineLength Line is longer than 120 characters (found 128). 460
 Warning javadoc JavadocMethod Missing a Javadoc comment. 467
 Error whitespace ParenPad '(' is not followed by whitespace. 472
 Error whitespace ParenPad ')' is not preceded with whitespace. 472
 Error whitespace ParenPad '(' is not followed by whitespace. 473
 Error whitespace ParenPad ')' is not preceded with whitespace. 473
 Error whitespace ParenPad '(' is not followed by whitespace. 476
 Error whitespace ParenPad ')' is not preceded with whitespace. 476
 Error whitespace ParenPad '(' is not followed by whitespace. 477
 Error whitespace ParenPad ')' is not preceded with whitespace. 477
 Error whitespace ParenPad '(' is not followed by whitespace. 479
 Error whitespace ParenPad ')' is not preceded with whitespace. 479
 Error whitespace ParenPad '(' is not followed by whitespace. 482
 Error whitespace ParenPad ')' is not preceded with whitespace. 482
 Warning javadoc JavadocMethod Missing a Javadoc comment. 507
 Error sizes LineLength Line is longer than 120 characters (found 131). 512
 Error whitespace ParenPad '(' is not followed by whitespace. 526
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 526
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 526
 Error whitespace ParenPad ')' is not preceded with whitespace. 526
 Warning javadoc JavadocMethod Missing a Javadoc comment. 532
 Warning javadoc JavadocMethod Missing a Javadoc comment. 548
 Warning javadoc JavadocMethod Missing a Javadoc comment. 583
 Error whitespace ParenPad '(' is not followed by whitespace. 588
 Error whitespace ParenPad ')' is not preceded with whitespace. 588
 Error whitespace ParenPad '(' is not followed by whitespace. 589
 Error whitespace ParenPad ')' is not preceded with whitespace. 589
 Error whitespace ParenPad '(' is not followed by whitespace. 592
 Error whitespace ParenPad ')' is not preceded with whitespace. 592
 Error whitespace ParenPad '(' is not followed by whitespace. 593
 Error whitespace ParenPad ')' is not preceded with whitespace. 593
 Error whitespace ParenPad '(' is not followed by whitespace. 595
 Error whitespace ParenPad ')' is not preceded with whitespace. 595
 Error whitespace ParenPad '(' is not followed by whitespace. 598
 Error whitespace ParenPad ')' is not preceded with whitespace. 598
 Warning javadoc JavadocMethod Missing a Javadoc comment. 637
 Error whitespace ParenPad '(' is not followed by whitespace. 642
 Error whitespace ParenPad ')' is not preceded with whitespace. 642
 Error whitespace ParenPad '(' is not followed by whitespace. 643
 Error whitespace ParenPad ')' is not preceded with whitespace. 643
 Error whitespace ParenPad '(' is not followed by whitespace. 646
 Error whitespace ParenPad ')' is not preceded with whitespace. 646
 Error whitespace ParenPad '(' is not followed by whitespace. 647
 Error whitespace ParenPad ')' is not preceded with whitespace. 647
 Error whitespace ParenPad ')' is not preceded with whitespace. 652
 Warning javadoc JavadocMethod Expected @throws tag for 'Exception'. 723

org/apache/archiva/configuration/ArchivaDefaultConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryCheckPath'. 53
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryCheckPath'. 78
 Warning javadoc JavadocMethod Expected @param tag for 'defaultCheckPaths'. 88

org/apache/archiva/configuration/ArchivaRuntimeConfiguration.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 92
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error blocks LeftCurly '{' should be on a new line. 172
 Warning javadoc JavadocMethod Expected @param tag for 'dataDirectory'. 192
 Warning javadoc JavadocMethod Expected @param tag for 'defaultLanguage'. 203
 Warning javadoc JavadocMethod Expected @param tag for 'fileLockConfiguration'. 213
 Warning javadoc JavadocMethod Expected @param tag for 'languageRange'. 225
 Warning javadoc JavadocMethod Expected @param tag for 'remoteRepositoryBaseDirectory'. 236
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryBaseDirectory'. 247
 Warning javadoc JavadocMethod Missing a Javadoc comment. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error blocks LeftCurly '{' should be on a new line. 253
 Warning javadoc JavadocMethod Expected @param tag for 'urlFailureCacheConfiguration'. 262
 Warning javadoc JavadocMethod Expected an @return tag. 272
 Error whitespace ParenPad '(' is not followed by whitespace. 286
 Warning javadoc JavadocMethod Expected @param tag for 'type'. 286
 Error whitespace ParenPad ')' is not preceded with whitespace. 286
 Error blocks LeftCurly '{' should be on a new line. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad ')' is not preceded with 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
 Error whitespace ParenPad '(' is not followed by whitespace. 297
 Warning javadoc JavadocMethod Expected @param tag for 'type'. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error blocks LeftCurly '{' should be on a new line. 297
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error whitespace ParenPad ')' is not preceded with whitespace. 298
 Error whitespace ParenPad '(' is not followed by whitespace. 305
 Warning javadoc JavadocMethod Expected @param tag for 'checksumTypes'. 305
 Error whitespace ParenPad ')' is not preceded with whitespace. 305
 Error blocks LeftCurly '{' should be on a new line. 305
 Error whitespace ParenPad '(' is not followed by whitespace. 306
 Error whitespace WhitespaceAround '!=' is not preceded with whitespace. 306
 Error whitespace WhitespaceAround '!=' is not followed by whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error blocks LeftCurly '{' should be on a new line. 306
 Error whitespace ParenPad '(' is not followed by whitespace. 308
 Error whitespace ParenPad ')' is not preceded with whitespace. 308

org/apache/archiva/configuration/CacheConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'maxElementsInMemory'. 106
 Warning javadoc JavadocMethod Expected @param tag for 'maxElementsOnDisk'. 116
 Warning javadoc JavadocMethod Expected @param tag for 'timeToIdleSeconds'. 126
 Warning javadoc JavadocMethod Expected @param tag for 'timeToLiveSeconds'. 136

org/apache/archiva/configuration/Configuration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'legacyArtifactPath'. 140
 Warning javadoc JavadocMethod Expected @param tag for 'managedRepositoryConfiguration'. 150
 Warning javadoc JavadocMethod Expected @param tag for 'networkProxyConfiguration'. 160
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorConfiguration'. 170
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorRuleConfiguration'. 180
 Warning javadoc JavadocMethod Expected @param tag for 'remoteRepositoryConfiguration'. 190
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryGroupConfiguration'. 200
 Warning javadoc JavadocMethod Expected @param tag for 'legacyArtifactPath'. 416
 Warning javadoc JavadocMethod Expected @param tag for 'managedRepositoryConfiguration'. 426
 Warning javadoc JavadocMethod Expected @param tag for 'networkProxyConfiguration'. 436
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorConfiguration'. 446
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorRuleConfiguration'. 456
 Warning javadoc JavadocMethod Expected @param tag for 'remoteRepositoryConfiguration'. 466
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryGroupConfiguration'. 476
 Warning javadoc JavadocMethod Expected @param tag for 'archivaDefaultConfiguration'. 486
 Warning javadoc JavadocMethod Expected @param tag for 'archivaRuntimeConfiguration'. 496
 Warning javadoc JavadocMethod Expected @param tag for 'legacyArtifactPaths'. 506
 Warning javadoc JavadocMethod Expected @param tag for 'managedRepositories'. 517
 Warning javadoc JavadocMethod Expected @param tag for 'metadataStore'. 528
 Warning javadoc JavadocMethod Expected @param tag for 'modelEncoding'. 538
 Warning javadoc JavadocMethod Expected @param tag for 'networkConfiguration'. 548
 Warning javadoc JavadocMethod Expected @param tag for 'networkProxies'. 559
 Warning javadoc JavadocMethod Expected @param tag for 'organisationInfo'. 569
 Error sizes LineLength Line is longer than 120 characters (found 135). 579
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorRuleConfigurations'. 579
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectors'. 589
 Warning javadoc JavadocMethod Expected @param tag for 'redbackRuntimeConfiguration'. 599
 Warning javadoc JavadocMethod Expected @param tag for 'remoteRepositories'. 610
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryGroups'. 620
 Warning javadoc JavadocMethod Expected @param tag for 'repositoryScanning'. 630
 Warning javadoc JavadocMethod Expected @param tag for 'version'. 640
 Warning javadoc JavadocMethod Expected @param tag for 'webapp'. 650
 Warning javadoc JavadocMethod Missing a Javadoc comment. 658
 Warning javadoc JavadocMethod Missing a Javadoc comment. 683
 Error sizes LineLength Line is longer than 120 characters (found 128). 685
 Warning javadoc JavadocMethod Missing a Javadoc comment. 696
 Warning javadoc JavadocMethod Missing a Javadoc comment. 713
 Error sizes LineLength Line is longer than 120 characters (found 126). 719
 Error sizes LineLength Line is longer than 120 characters (found 124). 721
 Warning javadoc JavadocMethod Missing a Javadoc comment. 742
 Error sizes LineLength Line is longer than 120 characters (found 122). 744
 Warning javadoc JavadocMethod Missing a Javadoc comment. 756
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 761
 Error sizes LineLength Line is longer than 120 characters (found 121). 778
 Warning javadoc JavadocMethod Missing a Javadoc comment. 785
 Error sizes LineLength Line is longer than 120 characters (found 130). 787
 Warning javadoc JavadocMethod Missing a Javadoc comment. 799
 Warning javadoc JavadocMethod Missing a Javadoc comment. 815
 Error sizes LineLength Line is longer than 120 characters (found 132). 817
 Warning javadoc JavadocMethod Missing a Javadoc comment. 829

org/apache/archiva/configuration/ConfigurationEvent.java

Severity Category Rule Message Line
 Info javadoc JavadocVariable Missing a Javadoc comment. 29
 Info javadoc JavadocVariable Missing a Javadoc comment. 31
 Warning javadoc JavadocMethod Missing a Javadoc comment. 35
 Warning javadoc JavadocMethod Missing a Javadoc comment. 40

org/apache/archiva/configuration/ConfigurationListener.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'event'. 32

org/apache/archiva/configuration/ConfigurationNames.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 29
 Warning javadoc JavadocMethod Missing a Javadoc comment. 34
 Warning javadoc JavadocMethod Missing a Javadoc comment. 39
 Warning javadoc JavadocMethod Missing a Javadoc comment. 44
 Warning javadoc JavadocMethod Missing a Javadoc comment. 49

org/apache/archiva/configuration/ConfigurationRuntimeException.java

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

org/apache/archiva/configuration/ConfigurationTest.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.junit.Assert.*. 30
 Warning javadoc JavadocMethod Missing a Javadoc comment. 40
 Error coding MagicNumber '8080' is a magic number. 43
 Error coding MagicNumber '9090' is a magic number. 45
 Warning javadoc JavadocMethod Missing a Javadoc comment. 66
 Warning javadoc JavadocMethod Missing a Javadoc comment. 96
 Warning javadoc JavadocMethod Missing a Javadoc comment. 127
 Warning javadoc JavadocMethod Missing a Javadoc comment. 135
 Warning javadoc JavadocMethod Missing a Javadoc comment. 145

org/apache/archiva/configuration/DefaultArchivaConfiguration.java

Severity Category Rule Message Line
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 52
 Error sizes LineLength Line is longer than 120 characters (found 153). 78
 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. 83
 Error whitespace ParenPad '(' is not followed by whitespace. 84
 Error whitespace ParenPad ')' is not preceded with whitespace. 84
 Error naming StaticVariableName Name 'FILE_ENCODING' must match pattern '^[a-z][a-zA-Z0-9]*$'. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error whitespace ParenPad ')' is not preceded with whitespace. 92
 Error blocks LeftCurly '{' should be on a new line. 143
 Error whitespace ParenPad '(' is not followed by whitespace. 144
 Error whitespace ParenPad ')' is not preceded with whitespace. 144
 Error blocks LeftCurly '{' should be on a new line. 149
 Error blocks LeftCurly '{' should be on a new line. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error blocks LeftCurly '{' should be on a new line. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 156
 Error whitespace ParenPad ')' is not preceded with whitespace. 156
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error blocks LeftCurly '{' should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 158
 Error whitespace ParenPad ')' is not preceded with whitespace. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error blocks LeftCurly '{' should be on a new line. 165
 Error whitespace OperatorWrap '||' should be on a new line. 166
 Error whitespace ParenPad '(' is not followed by whitespace. 167
 Error whitespace ParenPad '(' is not followed by whitespace. 167
 Error whitespace ParenPad ')' is not preceded with whitespace. 167
 Error whitespace ParenPad ')' is not preceded with whitespace. 167
 Error sizes MethodLength Method length is 159 lines (max allowed is 150). 170
 Error whitespace ParenPad '(' is not followed by whitespace. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error blocks LeftCurly '{' should be on a new line. 171
 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. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error whitespace ParenPad ')' is not preceded with whitespace. 174
 Error blocks LeftCurly '{' should be on a new line. 174
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error blocks LeftCurly '{' should be on a new line. 175
 Error blocks RightCurly '}' should be alone on a line. 178
 Error blocks LeftCurly '{' should be on a new line. 178
 Error sizes LineLength Line is longer than 120 characters (found 144). 179
 Error whitespace ParenPad '(' is not followed by whitespace. 179
 Error whitespace ParenPad ')' is not preceded with whitespace. 179
 Error whitespace ParenPad '(' is not followed by whitespace. 183
 Error whitespace ParenPad ')' is not preceded with whitespace. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 194
 Error whitespace ParenPad '(' is not followed by whitespace. 194
 Error whitespace ParenPad ')' is not preceded with whitespace. 194
 Error whitespace ParenPad ')' is not preceded with whitespace. 194
 Error blocks LeftCurly '{' should be on a new line. 194
 Error whitespace ParenPad '(' is not followed by whitespace. 195
 Error whitespace ParenPad ')' is not preceded with whitespace. 195
 Error blocks RightCurly '}' should be alone on a line. 196
 Error blocks LeftCurly '{' should be on a new line. 196
 Error whitespace ParenPad '(' is not followed by whitespace. 197
 Error whitespace ParenPad ')' is not preceded with whitespace. 197
 Error whitespace ParenPad '(' is not followed by whitespace. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error blocks LeftCurly '{' should be on a new line. 198
 Error blocks RightCurly '}' should be alone on a line. 200
 Error blocks LeftCurly '{' should be on a new line. 200
 Error whitespace ParenPad '(' is not followed by whitespace. 201
 Error whitespace ParenPad ')' is not preceded with whitespace. 201
 Error whitespace ParenPad '(' is not followed by whitespace. 204
 Error whitespace ParenPad ')' is not preceded with whitespace. 204
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error whitespace ParenPad '(' is not followed by whitespace. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error whitespace ParenPad ')' is not preceded with whitespace. 206
 Error blocks LeftCurly '{' should be on a new line. 206
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error blocks RightCurly '}' should be alone on a line. 209
 Error blocks LeftCurly '{' should be on a new line. 209
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error whitespace ParenPad '(' is not followed by whitespace. 211
 Error whitespace ParenPad ')' is not preceded with whitespace. 211
 Error blocks LeftCurly '{' should be on a new line. 211
 Error blocks RightCurly '}' should be alone on a line. 213
 Error blocks LeftCurly '{' should be on a new line. 213
 Error whitespace ParenPad '(' is not followed by whitespace. 214
 Error whitespace ParenPad ')' is not preceded with whitespace. 214
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error blocks LeftCurly '{' should be on a new line. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 220
 Error whitespace ParenPad ')' is not preceded with whitespace. 220
 Error blocks RightCurly '}' should be alone on a line. 221
 Error blocks LeftCurly '{' should be on a new line. 221
 Error whitespace ParenPad '(' is not followed by whitespace. 222
 Error whitespace ParenPad ')' is not preceded with whitespace. 222
 Error whitespace ParenPad '(' is not followed by whitespace. 223
 Error whitespace ParenPad ')' is not preceded with whitespace. 223
 Error blocks LeftCurly '{' should be on a new line. 223
 Error blocks RightCurly '}' should be alone on a line. 225
 Error blocks LeftCurly '{' should be on a new line. 225
 Error whitespace ParenPad '(' is not followed by whitespace. 226
 Error whitespace ParenPad ')' is not preceded with whitespace. 226
 Error whitespace ParenPad '(' is not followed by whitespace. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 231
 Error whitespace ParenPad ')' is not preceded with whitespace. 231
 Error whitespace ParenPad ')' is not preceded with whitespace. 231
 Error blocks LeftCurly '{' should be on a new line. 231
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error whitespace ParenPad ')' is not preceded with whitespace. 232
 Error blocks RightCurly '}' should be alone on a line. 233
 Error blocks LeftCurly '{' should be on a new line. 233
 Error whitespace ParenPad '(' is not followed by whitespace. 234
 Error whitespace ParenPad ')' is not preceded with whitespace. 234
 Error whitespace ParenPad '(' is not followed by whitespace. 235
 Error whitespace ParenPad ')' is not preceded with whitespace. 235
 Error blocks LeftCurly '{' should be on a new line. 235
 Error blocks RightCurly '}' should be alone on a line. 237
 Error blocks LeftCurly '{' should be on a new line. 237
 Error whitespace ParenPad '(' is not followed by whitespace. 238
 Error whitespace ParenPad ')' is not preceded with whitespace. 238
 Error whitespace ParenPad '(' is not followed by whitespace. 245
 Error whitespace ParenPad '(' is not followed by whitespace. 245
 Error whitespace ParenPad ')' is not preceded with whitespace. 245
 Error whitespace ParenPad ')' is not preceded with whitespace. 245
 Error blocks LeftCurly '{' should be on a new line. 245
 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 sizes LineLength Line is longer than 120 characters (found 131). 248
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error blocks LeftCurly '{' should be on a new line. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 250
 Error whitespace ParenPad ')' is not preceded with whitespace. 250
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error whitespace ParenPad ')' is not preceded with whitespace. 253
 Error blocks LeftCurly '{' should be on a new line. 253
 Error whitespace ParenPad '(' is not followed by whitespace. 254
 Error whitespace ParenPad ')' is not preceded with whitespace. 254
 Error whitespace ParenPad '(' is not followed by whitespace. 259
 Error whitespace ParenPad ')' is not preceded with whitespace. 259
 Error blocks LeftCurly '{' should be on a new line. 259
 Error whitespace ParenPad '(' is not followed by whitespace. 263
 Error whitespace ParenPad ')' is not preceded with whitespace. 263
 Error whitespace ParenPad '(' is not followed by whitespace. 267
 Error whitespace ParenPad ')' is not preceded with whitespace. 267
 Error blocks LeftCurly '{' should be on a new line. 267
 Error whitespace ParenPad '(' is not followed by whitespace. 273
 Error whitespace ParenPad ')' is not preceded with whitespace. 273
 Error whitespace ParenPad '(' is not followed by whitespace. 278
 Error whitespace ParenPad ')' is not preceded with whitespace. 278
 Error blocks LeftCurly '{' should be on a new line. 278
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with whitespace. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with 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. 284
 Error whitespace ParenPad '(' is not followed by whitespace. 284
 Error whitespace ParenPad ')' is not preceded with whitespace. 284
 Error whitespace ParenPad ')' is not preceded with whitespace. 284
 Error blocks LeftCurly '{' should be on a new line. 284
 Error blocks RightCurly '}' should be alone on a line. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 286
 Error whitespace ParenPad ')' is not preceded with whitespace. 286
 Error whitespace ParenPad ')' is not preceded with whitespace. 286
 Error blocks LeftCurly '{' should be on a new line. 286
 Error blocks RightCurly '}' should be alone on a line. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error blocks LeftCurly '{' should be on a new line. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error blocks LeftCurly '{' should be on a new line. 290
 Error blocks RightCurly '}' should be alone on a line. 292
 Error whitespace ParenPad '(' is not followed by whitespace. 292
 Error whitespace ParenPad '(' is not followed by whitespace. 292
 Error whitespace ParenPad ')' is not preceded with whitespace. 292
 Error whitespace ParenPad ')' is not preceded with whitespace. 292
 Error blocks LeftCurly '{' should be on a new line. 292
 Error blocks RightCurly '}' should be alone on a line. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 295
 Error whitespace ParenPad ')' is not preceded with whitespace. 295
 Error whitespace ParenPad ')' is not preceded with whitespace. 295
 Error blocks LeftCurly '{' should be on a new line. 295
 Error whitespace ParenPad '(' is not followed by whitespace. 296
 Error whitespace ParenPad '(' is not followed by whitespace. 296
 Error whitespace ParenPad ')' is not preceded with whitespace. 296
 Error whitespace ParenPad ')' is not preceded with whitespace. 296
 Error blocks LeftCurly '{' should be on a new line. 296
 Error whitespace ParenPad '(' is not followed by whitespace. 302
 Error whitespace ParenPad ')' is not preceded with whitespace. 302
 Error whitespace ParenPad '(' is not followed by whitespace. 305
 Error whitespace ParenPad ')' is not preceded with whitespace. 305
 Error blocks LeftCurly '{' should be on a new line. 305
 Error whitespace ParenPad '(' is not followed by whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error whitespace ParenPad '(' is not followed by whitespace. 314
 Error whitespace ParenPad ')' is not preceded with whitespace. 314
 Error blocks LeftCurly '{' should be on a new line. 314
 Error whitespace ParenPad '(' is not followed by whitespace. 316
 Error whitespace ParenPad ')' is not preceded with whitespace. 316
 Error whitespace ParenPad '(' is not followed by whitespace. 320
 Error whitespace ParenPad ')' is not preceded with whitespace. 320
 Error blocks LeftCurly '{' should be on a new line. 320
 Error whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 326
 Error whitespace ParenPad ')' is not preceded with whitespace. 326
 Error sizes LineLength Line is longer than 120 characters (found 121). 327
 Error whitespace ParenPad '(' is not followed by whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 327
 Error whitespace ParenPad '(' is not followed by whitespace. 341
 Error whitespace ParenPad ')' is not preceded with whitespace. 341
 Error blocks LeftCurly '{' should be on a new line. 341
 Error sizes LineLength Line is longer than 120 characters (found 121). 342
 Error whitespace ParenPad '(' is not followed by whitespace. 345
 Error whitespace ParenPad ')' is not preceded with whitespace. 345
 Error blocks LeftCurly '{' should be on a new line. 345
 Error whitespace ParenPad '(' is not followed by whitespace. 346
 Error whitespace ParenPad ')' is not preceded with whitespace. 346
 Error sizes LineLength Line is longer than 120 characters (found 141). 348
 Error whitespace ParenPad '(' is not followed by whitespace. 348
 Error whitespace ParenPad ')' is not preceded with whitespace. 348
 Error whitespace ParenPad '(' is not followed by whitespace. 349
 Error blocks LeftCurly '{' should be on a new line. 349
 Error whitespace ParenPad '(' is not followed by whitespace. 350
 Error whitespace ParenPad ')' is not preceded with whitespace. 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 followed by whitespace. 352
 Error whitespace ParenPad ')' is not preceded with 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. 355
 Error whitespace ParenPad ')' is not preceded with whitespace. 355
 Error whitespace ParenPad '(' is not followed by whitespace. 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. 360
 Error whitespace ParenPad '(' is not followed by whitespace. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 360
 Error blocks LeftCurly '{' should be on a new line. 360
 Error whitespace ParenPad '(' is not followed by whitespace. 362
 Error whitespace ParenPad ')' is not preceded with whitespace. 362
 Error sizes LineLength Line is longer than 120 characters (found 135). 363
 Error whitespace ParenPad '(' is not followed by whitespace. 363
 Error whitespace ParenPad ')' is not preceded with whitespace. 364
 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. 370
 Warning coding HiddenField 'registry' hides a field. 370
 Error whitespace ParenPad ')' is not preceded with whitespace. 370
 Error blocks LeftCurly '{' should be on a new line. 370
 Error whitespace ParenPad '(' is not followed by whitespace. 373
 Error whitespace ParenPad ')' is not preceded with whitespace. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 375
 Error whitespace ParenPad ')' is not preceded with whitespace. 375
 Error whitespace ParenPad '(' is not followed by whitespace. 376
 Error whitespace ParenPad ')' is not preceded with whitespace. 376
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error blocks LeftCurly '{' should be on a new line. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 384
 Error whitespace ParenPad ')' is not preceded with whitespace. 384
 Error blocks LeftCurly '{' should be on a new line. 386
 Error whitespace ParenPad '(' is not followed by whitespace. 387
 Error whitespace ParenPad ')' is not preceded with whitespace. 387
 Error blocks RightCurly '}' should be alone on a line. 389
 Error whitespace ParenPad '(' is not followed by whitespace. 389
 Error whitespace ParenPad ')' is not preceded with whitespace. 389
 Error blocks LeftCurly '{' should be on a new line. 389
 Error whitespace ParenPad ')' is not preceded with whitespace. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 393
 Error whitespace ParenPad ')' is not preceded with whitespace. 393
 Error blocks LeftCurly '{' should be on a new line. 400
 Error whitespace ParenPad '(' is not followed by whitespace. 401
 Error whitespace ParenPad ')' is not preceded with whitespace. 401
 Error blocks LeftCurly '{' should be on a new line. 402
 Error sizes LineLength Line is longer than 120 characters (found 124). 403
 Error whitespace ParenPad '(' is not followed by whitespace. 403
 Error whitespace ParenPad ')' is not preceded with whitespace. 403
 Error blocks RightCurly '}' should be alone on a line. 404
 Error whitespace ParenPad '(' is not followed by whitespace. 404
 Error whitespace ParenPad ')' is not preceded with whitespace. 404
 Error blocks LeftCurly '{' should be on a new line. 404
 Error whitespace ParenPad ')' is not preceded with whitespace. 406
 Error whitespace ParenPad '(' is not followed by whitespace. 408
 Error whitespace ParenPad ')' is not preceded with whitespace. 408
 Error whitespace ParenPad '(' is not followed by whitespace. 411
 Error whitespace ParenPad ')' is not preceded with whitespace. 411
 Error whitespace ParenPad '(' is not followed by whitespace. 413
 Warning coding HiddenField 'configuration' hides a field. 413
 Error whitespace ParenPad ')' is not preceded with whitespace. 413
 Error blocks LeftCurly '{' should be on a new line. 414
 Error whitespace ParenPad '(' is not followed by whitespace. 415
 Error whitespace ParenPad ')' is not preceded with whitespace. 415
 Error whitespace ParenPad '(' is not followed by whitespace. 416
 Error whitespace ParenPad ')' is not preceded with whitespace. 416
 Error whitespace ParenPad '(' is not followed by whitespace. 417
 Error whitespace ParenPad ')' is not preceded with whitespace. 417
 Error blocks LeftCurly '{' should be on a new line. 417
 Error whitespace ParenPad '(' is not followed by whitespace. 419
 Error whitespace ParenPad ')' is not preceded with whitespace. 419
 Error blocks LeftCurly '{' should be on a new line. 419
 Error blocks RightCurly '}' should be alone on a line. 422
 Error whitespace ParenPad '(' is not followed by whitespace. 422
 Error whitespace ParenPad ')' is not preceded with whitespace. 422
 Error blocks LeftCurly '{' should be on a new line. 422
 Error whitespace ParenPad '(' is not followed by whitespace. 425
 Error blocks LeftCurly '{' should be on a new line. 425
 Error whitespace ParenPad '(' is not followed by whitespace. 430
 Error whitespace ParenPad '(' is not followed by whitespace. 430
 Error whitespace ParenPad ')' is not preceded with whitespace. 430
 Error whitespace ParenPad '(' is not followed by whitespace. 431
 Error whitespace ParenPad ')' is not preceded with whitespace. 431
 Error whitespace ParenPad '(' is not followed by whitespace. 432
 Error whitespace ParenPad ')' is not preceded with whitespace. 432
 Error whitespace ParenPad '(' is not followed by whitespace. 433
 Error whitespace ParenPad ')' is not preceded with whitespace. 433
 Error whitespace ParenPad '(' is not followed by whitespace. 434
 Error whitespace ParenPad ')' is not preceded with whitespace. 434
 Error whitespace ParenPad '(' is not followed by whitespace. 435
 Error whitespace ParenPad ')' is not preceded with whitespace. 435
 Error whitespace ParenPad '(' is not followed by whitespace. 436
 Error whitespace ParenPad ')' is not preceded with whitespace. 436
 Error whitespace ParenPad ')' is not preceded with whitespace. 436
 Error whitespace ParenPad '(' is not followed by whitespace. 442
 Error whitespace ParenPad ')' is not preceded with whitespace. 442
 Error blocks LeftCurly '{' should be on a new line. 442
 Error whitespace ParenPad ')' is not preceded with whitespace. 446
 Error whitespace ParenPad '(' is not followed by whitespace. 451
 Error whitespace ParenPad ')' is not preceded with whitespace. 451
 Error sizes LineLength Line is longer than 120 characters (found 135). 453
 Error whitespace ParenPad '(' is not followed by whitespace. 454
 Error whitespace ParenPad ')' is not preceded with whitespace. 454
 Error blocks LeftCurly '{' should be on a new line. 454
 Error whitespace ParenPad '(' is not followed by whitespace. 455
 Error whitespace ParenPad ')' is not preceded with whitespace. 455
 Error blocks LeftCurly '{' should be on a new line. 455
 Error whitespace ParenPad '(' is not followed by whitespace. 456
 Error whitespace ParenPad ')' is not preceded with whitespace. 456
 Error whitespace ParenPad '(' is not followed by whitespace. 458
 Error whitespace ParenPad ')' is not preceded with whitespace. 458
 Error blocks LeftCurly '{' should be on a new line. 458
 Error whitespace ParenPad '(' is not followed by whitespace. 459
 Error whitespace ParenPad ')' is not preceded with whitespace. 459
 Error whitespace ParenPad '(' is not followed by whitespace. 462
 Error whitespace ParenPad ')' is not preceded with whitespace. 462
 Error blocks LeftCurly '{' should be on a new line. 462
 Error whitespace ParenPad '(' is not followed by whitespace. 463
 Error whitespace ParenPad ')' is not preceded with whitespace. 463
 Error whitespace ParenPad '(' is not followed by whitespace. 465
 Error whitespace ParenPad ')' is not preceded with whitespace. 465
 Error blocks LeftCurly '{' should be on a new line. 465
 Error whitespace ParenPad '(' is not followed by whitespace. 466
 Error whitespace ParenPad ')' is not preceded with whitespace. 466
 Error whitespace ParenPad '(' is not followed by whitespace. 468
 Error whitespace ParenPad ')' is not preceded with whitespace. 468
 Error blocks LeftCurly '{' should be on a new line. 468
 Error whitespace ParenPad '(' is not followed by whitespace. 469
 Error whitespace ParenPad ')' is not preceded with whitespace. 469
 Error whitespace ParenPad '(' is not followed by whitespace. 471
 Error whitespace ParenPad ')' is not preceded with whitespace. 471
 Error blocks LeftCurly '{' should be on a new line. 471
 Error whitespace ParenPad '(' is not followed by whitespace. 472
 Error whitespace ParenPad ')' is not preceded with whitespace. 472
 Error whitespace ParenPad '(' is not followed by whitespace. 474
 Error whitespace ParenPad ')' is not preceded with whitespace. 474
 Error blocks LeftCurly '{' should be on a new line. 474
 Error whitespace ParenPad '(' is not followed by whitespace. 475
 Error whitespace ParenPad ')' is not preceded with whitespace. 475
 Error blocks LeftCurly '{' should be on a new line. 475
 Error whitespace ParenPad '(' is not followed by whitespace. 476
 Error whitespace ParenPad ')' is not preceded with whitespace. 476
 Error whitespace ParenPad '(' is not followed by whitespace. 478
 Error whitespace ParenPad ')' is not preceded with whitespace. 478
 Error blocks LeftCurly '{' should be on a new line. 478
 Error whitespace ParenPad '(' is not followed by whitespace. 479
 Error whitespace ParenPad ')' is not preceded with whitespace. 479
 Error whitespace ParenPad '(' is not followed by whitespace. 482
 Error whitespace ParenPad ')' is not preceded with whitespace. 482
 Error blocks LeftCurly '{' should be on a new line. 482
 Error whitespace ParenPad '(' is not followed by whitespace. 483
 Error whitespace ParenPad ')' is not preceded with whitespace. 483
 Error whitespace ParenPad '(' is not followed by whitespace. 486
 Error whitespace ParenPad ')' is not preceded with whitespace. 486
 Error whitespace ParenPad '(' is not followed by whitespace. 491
 Error whitespace ParenPad ')' is not preceded with whitespace. 491
 Error whitespace ParenPad '(' is not followed by whitespace. 494
 Error whitespace ParenPad ')' is not preceded with whitespace. 494
 Error whitespace ParenPad '(' is not followed by whitespace. 497
 Warning coding HiddenField 'configuration' hides a field. 497
 Error whitespace ParenPad ')' is not preceded with whitespace. 497
 Error blocks LeftCurly '{' should be on a new line. 497
 Error whitespace ParenPad '(' is not followed by whitespace. 498
 Error whitespace ParenPad ')' is not preceded with whitespace. 498
 Error blocks LeftCurly '{' should be on a new line. 498
 Error whitespace ParenPad '(' is not followed by whitespace. 499
 Error whitespace ParenPad '(' is not followed by whitespace. 499
 Error whitespace ParenPad ')' is not preceded with whitespace. 499
 Error whitespace ParenPad ')' is not preceded with whitespace. 499
 Error blocks LeftCurly '{' should be on a new line. 504
 Error whitespace ParenPad '(' is not followed by whitespace. 511
 Error whitespace ParenPad '(' is not followed by whitespace. 511
 Error whitespace ParenPad ')' is not preceded with whitespace. 511
 Error whitespace ParenPad ')' is not preceded with whitespace. 511
 Error blocks LeftCurly '{' should be on a new line. 511
 Error whitespace ParenPad '(' is not followed by whitespace. 513
 Error whitespace ParenPad '(' is not followed by whitespace. 513
 Error whitespace ParenPad ')' is not preceded with whitespace. 513
 Error whitespace ParenPad ')' is not preceded with whitespace. 513
 Error blocks LeftCurly '{' should be on a new line. 513
 Error sizes LineLength Line is longer than 120 characters (found 122). 515
 Error whitespace ParenPad ')' is not preceded with whitespace. 517
 Error whitespace ParenPad '(' is not followed by whitespace. 525
 Error whitespace ParenPad ')' is not preceded with whitespace. 525
 Error whitespace ParenPad '(' is not followed by whitespace. 525
 Error whitespace ParenPad ')' is not preceded with whitespace. 525
 Error whitespace ParenPad '(' is not followed by whitespace. 529
 Error whitespace ParenPad ')' is not preceded with whitespace. 529
 Error blocks LeftCurly '{' should be on a new line. 529
 Error whitespace ParenPad '(' is not followed by whitespace. 530
 Error whitespace ParenPad ')' is not preceded with whitespace. 530
 Error whitespace ParenPad '(' is not followed by whitespace. 533
 Error whitespace ParenPad ')' is not preceded with whitespace. 533
 Error whitespace ParenPad '(' is not followed by whitespace. 535
 Error whitespace ParenPad ')' is not preceded with whitespace. 535
 Error whitespace ParenPad '(' is not followed by whitespace. 536
 Error whitespace ParenPad ')' is not preceded with whitespace. 536
 Error whitespace ParenPad '(' is not followed by whitespace. 539
 Error whitespace ParenPad ')' is not preceded with whitespace. 539
 Error blocks LeftCurly '{' should be on a new line. 539
 Error whitespace ParenPad '(' is not followed by whitespace. 553
 Error whitespace ParenPad ')' is not preceded with whitespace. 553
 Error blocks LeftCurly '{' should be on a new line. 553
 Error whitespace ParenPad '(' is not followed by whitespace. 554
 Error whitespace ParenPad ')' is not preceded with whitespace. 554
 Error blocks LeftCurly '{' should be on a new line. 556
 Error whitespace ParenPad '(' is not followed by whitespace. 559
 Error whitespace ParenPad ')' is not preceded with whitespace. 559
 Error blocks LeftCurly '{' should be on a new line. 559
 Error whitespace ParenPad '(' is not followed by whitespace. 561
 Error whitespace ParenPad ')' is not preceded with whitespace. 561
 Error blocks LeftCurly '{' should be on a new line. 561
 Error whitespace ParenPad '(' is not followed by whitespace. 564
 Error whitespace ParenPad '(' is not followed by whitespace. 564
 Error whitespace ParenPad ')' is not preceded with whitespace. 564
 Error whitespace ParenPad ')' is not preceded with whitespace. 564
 Error blocks LeftCurly '{' should be on a new line. 564
 Error whitespace ParenPad '(' is not followed by whitespace. 569
 Error whitespace ParenPad ')' is not preceded with whitespace. 569
 Error blocks RightCurly '}' should be alone on a line. 571
 Error whitespace ParenPad '(' is not followed by whitespace. 571
 Error whitespace ParenPad ')' is not preceded with whitespace. 571
 Error blocks LeftCurly '{' should be on a new line. 571
 Error whitespace ParenPad '(' is not followed by whitespace. 572
 Error whitespace ParenPad ')' is not preceded with whitespace. 572
 Error whitespace ParenPad '(' is not followed by whitespace. 577
 Error whitespace ParenPad ')' is not preceded with whitespace. 577
 Error blocks LeftCurly '{' should be on a new line. 577
 Error whitespace ParenPad '(' is not followed by whitespace. 578
 Error whitespace ParenPad ')' is not preceded with whitespace. 578
 Error whitespace ParenPad '(' is not followed by whitespace. 579
 Error whitespace ParenPad ')' is not preceded with whitespace. 579
 Error blocks LeftCurly '{' should be on a new line. 579
 Error whitespace ParenPad '(' is not followed by whitespace. 580
 Error whitespace ParenPad ')' is not preceded with whitespace. 580
 Error whitespace ParenPad '(' is not followed by whitespace. 585
 Error whitespace ParenPad ')' is not preceded with whitespace. 585
 Error blocks LeftCurly '{' should be on a new line. 585
 Error whitespace ParenPad '(' is not followed by whitespace. 586
 Error whitespace ParenPad ')' is not preceded with whitespace. 586
 Error blocks LeftCurly '{' should be on a new line. 586
 Error whitespace ParenPad '(' is not followed by whitespace. 590
 Error whitespace ParenPad ')' is not preceded with whitespace. 590
 Error whitespace ParenPad '(' is not followed by whitespace. 594
 Error whitespace ParenPad ')' is not preceded with whitespace. 594
 Error blocks LeftCurly '{' should be on a new line. 594
 Error whitespace ParenPad '(' is not followed by whitespace. 595
 Error whitespace ParenPad ')' is not preceded with whitespace. 595
 Error blocks LeftCurly '{' should be on a new line. 595
 Error whitespace ParenPad '(' is not followed by whitespace. 599
 Error whitespace ParenPad ')' is not preceded with whitespace. 599
 Error whitespace ParenPad '(' is not followed by whitespace. 604
 Error whitespace ParenPad ')' is not preceded with whitespace. 604
 Error blocks LeftCurly '{' should be on a new line. 604
 Error whitespace ParenPad '(' is not followed by whitespace. 605
 Error whitespace ParenPad ')' is not preceded with whitespace. 605
 Error whitespace ParenPad '(' is not followed by whitespace. 608
 Error whitespace ParenPad ')' is not preceded with whitespace. 608
 Error whitespace ParenPad '(' is not followed by whitespace. 611
 Error whitespace ParenPad ')' is not preceded with whitespace. 611
 Error blocks LeftCurly '{' should be on a new line. 611
 Error whitespace ParenPad '(' is not followed by whitespace. 612
 Error whitespace ParenPad ')' is not preceded with whitespace. 612
 Error whitespace ParenPad '(' is not followed by whitespace. 613
 Error whitespace ParenPad ')' is not preceded with whitespace. 613
 Error blocks LeftCurly '{' should be on a new line. 613
 Error whitespace ParenPad '(' is not followed by whitespace. 614
 Error whitespace ParenPad ')' is not preceded with whitespace. 614
 Error whitespace ParenPad '(' is not followed by whitespace. 616
 Error whitespace ParenPad ')' is not preceded with whitespace. 616
 Error whitespace ParenPad '(' is not followed by whitespace. 617
 Error whitespace ParenPad ')' is not preceded with whitespace. 617
 Error blocks LeftCurly '{' should be on a new line. 617
 Error whitespace ParenPad '(' is not followed by whitespace. 618
 Error whitespace ParenPad ')' is not preceded with whitespace. 618
 Error whitespace ParenPad '(' is not followed by whitespace. 623
 Error whitespace ParenPad ')' is not preceded with whitespace. 623
 Error blocks LeftCurly '{' should be on a new line. 623
 Error whitespace ParenPad '(' is not followed by whitespace. 624
 Error whitespace ParenPad ')' is not preceded with whitespace. 624
 Error whitespace ParenPad '(' is not followed by whitespace. 625
 Error whitespace ParenPad ')' is not preceded with whitespace. 625
 Error whitespace ParenPad '(' is not followed by whitespace. 627
 Error whitespace ParenPad ')' is not preceded with whitespace. 627
 Error whitespace ParenPad '(' is not followed by whitespace. 628
 Error whitespace ParenPad ')' is not preceded with whitespace. 628
 Error blocks LeftCurly '{' should be on a new line. 628
 Error whitespace ParenPad '(' is not followed by whitespace. 629
 Error whitespace ParenPad ')' is not preceded with whitespace. 629
 Error whitespace ParenPad '(' is not followed by whitespace. 631
 Error whitespace ParenPad ')' is not preceded with whitespace. 631
 Error whitespace ParenPad '(' is not followed by whitespace. 632
 Error whitespace ParenPad ')' is not preceded with whitespace. 632
 Error blocks LeftCurly '{' should be on a new line. 632
 Error whitespace ParenPad '(' is not followed by whitespace. 633
 Error whitespace ParenPad ')' is not preceded with whitespace. 633
 Warning javadoc JavadocMethod Missing a Javadoc comment. 638
 Error blocks LeftCurly '{' should be on a new line. 639
 Error blocks LeftCurly '{' should be on a new line. 642
 Error whitespace ParenPad '(' is not followed by whitespace. 644
 Error whitespace ParenPad ')' is not preceded with whitespace. 644
 Error whitespace ParenPad '(' is not followed by whitespace. 645
 Error whitespace ParenPad ')' is not preceded with whitespace. 645
 Error whitespace ParenPad '(' is not followed by whitespace. 646
 Error whitespace ParenPad '(' is not followed by whitespace. 646
 Error whitespace ParenPad ')' is not preceded with whitespace. 646
 Error whitespace ParenPad ')' is not preceded with whitespace. 646
 Error blocks LeftCurly '{' should be on a new line. 646
 Error blocks RightCurly '}' should be alone on a line. 648
 Error blocks LeftCurly '{' should be on a new line. 648
 Error whitespace ParenPad '(' is not followed by whitespace. 649
 Error whitespace ParenPad ')' is not preceded with whitespace. 649
 Error whitespace ParenPad '(' is not followed by whitespace. 650
 Error whitespace ParenPad '(' is not followed by whitespace. 650
 Error whitespace ParenPad ')' is not preceded with whitespace. 650
 Error whitespace ParenPad ')' is not preceded with whitespace. 650
 Error blocks LeftCurly '{' should be on a new line. 650
 Error blocks RightCurly '}' should be alone on a line. 652
 Error blocks LeftCurly '{' should be on a new line. 652
 Error whitespace ParenPad '(' is not followed by whitespace. 653
 Error whitespace ParenPad ')' is not preceded with whitespace. 653
 Error whitespace ParenPad '(' is not followed by whitespace. 656
 Error whitespace ParenPad ')' is not preceded with whitespace. 656
 Error blocks RightCurly '}' should be alone on a line. 659
 Error whitespace ParenPad '(' is not followed by whitespace. 659
 Error whitespace ParenPad ')' is not preceded with whitespace. 659
 Error blocks LeftCurly '{' should be on a new line. 659
 Error whitespace ParenPad '(' is not followed by whitespace. 660
 Error whitespace ParenPad ')' is not preceded with whitespace. 660
 Error blocks RightCurly '}' should be alone on a line. 661
 Error whitespace ParenPad '(' is not followed by whitespace. 661
 Error whitespace ParenPad ')' is not preceded with whitespace. 661
 Error blocks LeftCurly '{' should be on a new line. 661
 Error whitespace ParenPad ')' is not preceded with whitespace. 663
 Error whitespace ParenPad '(' is not followed by whitespace. 665
 Error whitespace ParenPad ')' is not preceded with whitespace. 665
 Error blocks LeftCurly '{' should be on a new line. 672
 Error whitespace ParenPad '(' is not followed by whitespace. 674
 Error whitespace ParenPad ')' is not preceded with whitespace. 674
 Error whitespace ParenPad '(' is not followed by whitespace. 678
 Error whitespace ParenPad ')' is not preceded with whitespace. 678
 Error whitespace ParenPad '(' is not followed by whitespace. 680
 Error whitespace ParenPad ')' is not preceded with whitespace. 680
 Error blocks LeftCurly '{' should be on a new line. 680
 Error whitespace ParenPad '(' is not followed by whitespace. 683
 Error whitespace ParenPad ')' is not preceded with whitespace. 683
 Error whitespace ParenPad '(' is not followed by whitespace. 684
 Error whitespace ParenPad ')' is not preceded with whitespace. 684
 Error blocks LeftCurly '{' should be on a new line. 684
 Error whitespace ParenPad '(' is not followed by whitespace. 685
 Error whitespace ParenPad '(' is not followed by whitespace. 685
 Error whitespace ParenPad ')' is not preceded with whitespace. 685
 Error whitespace ParenPad ')' is not preceded with whitespace. 685
 Error blocks LeftCurly '{' should be on a new line. 685
 Error whitespace ParenPad '(' is not followed by whitespace. 686
 Error whitespace ParenPad ')' is not preceded with whitespace. 686
 Error whitespace ParenPad '(' is not followed by whitespace. 690
 Error whitespace ParenPad ')' is not preceded with whitespace. 690
 Error whitespace ParenPad '(' is not followed by whitespace. 694
 Error whitespace ParenPad '(' is not followed by whitespace. 694
 Error whitespace ParenPad ')' is not preceded with whitespace. 694
 Error whitespace ParenPad ')' is not preceded with whitespace. 694
 Error blocks LeftCurly '{' should be on a new line. 694
 Error whitespace ParenPad '(' is not followed by whitespace. 696
 Error whitespace ParenPad ')' is not preceded with whitespace. 696
 Error whitespace ParenPad '(' is not followed by whitespace. 697
 Error whitespace ParenPad ')' is not preceded with whitespace. 697
 Error whitespace ParenPad '(' is not followed by whitespace. 698
 Error whitespace ParenPad ')' is not preceded with whitespace. 698
 Error whitespace ParenPad '(' is not followed by whitespace. 702
 Error whitespace ParenPad '(' is not followed by whitespace. 702
 Error whitespace ParenPad ')' is not preceded with whitespace. 702
 Error whitespace ParenPad ')' is not preceded with whitespace. 702
 Error blocks LeftCurly '{' should be on a new line. 702
 Error whitespace ParenPad '(' is not followed by whitespace. 704
 Error whitespace ParenPad ')' is not preceded with whitespace. 704
 Error whitespace ParenPad '(' is not followed by whitespace. 705
 Error whitespace ParenPad ')' is not preceded with whitespace. 705
 Error whitespace ParenPad '(' is not followed by whitespace. 706
 Error whitespace ParenPad ')' is not preceded with whitespace. 706
 Error whitespace ParenPad '(' is not followed by whitespace. 711
 Error whitespace ParenPad '(' is not followed by whitespace. 711
 Error whitespace ParenPad ')' is not preceded with whitespace. 711
 Error whitespace ParenPad ')' is not preceded with whitespace. 711
 Error blocks LeftCurly '{' should be on a new line. 711
 Error whitespace ParenPad '(' is not followed by whitespace. 712
 Error whitespace ParenPad ')' is not preceded with whitespace. 712
 Error whitespace ParenPad '(' is not followed by whitespace. 713
 Error whitespace ParenPad ')' is not preceded with whitespace. 713
 Error whitespace ParenPad '(' is not followed by whitespace. 714
 Error whitespace ParenPad ')' is not preceded with whitespace. 714
 Error blocks LeftCurly '{' should be on a new line. 714
 Error whitespace ParenPad '(' is not followed by whitespace. 715
 Error whitespace ParenPad ')' is not preceded with whitespace. 715
 Error whitespace ParenPad '(' is not followed by whitespace. 717
 Error whitespace ParenPad ')' is not preceded with whitespace. 717
 Error blocks LeftCurly '{' should be on a new line. 718
 Error whitespace ParenPad '(' is not followed by whitespace. 719
 Error whitespace ParenPad ')' is not preceded with whitespace. 719
 Error blocks RightCurly '}' should be alone on a line. 720
 Error whitespace ParenPad '(' is not followed by whitespace. 720
 Error whitespace ParenPad ')' is not preceded with whitespace. 720
 Error blocks LeftCurly '{' should be on a new line. 720
 Error whitespace ParenPad '(' is not followed by whitespace. 721
 Error whitespace ParenPad ')' is not preceded with whitespace. 721
 Error blocks RightCurly '}' should be alone on a line. 722
 Error whitespace ParenPad '(' is not followed by whitespace. 722
 Error whitespace ParenPad ')' is not preceded with whitespace. 722
 Error blocks LeftCurly '{' should be on a new line. 722
 Error whitespace ParenPad '(' is not followed by whitespace. 723
 Error whitespace ParenPad ')' is not preceded with whitespace. 723
 Error blocks LeftCurly '{' should be on a new line. 729
 Error blocks LeftCurly '{' should be on a new line. 731
 Error blocks RightCurly '}' should be alone on a line. 733
 Error whitespace ParenPad '(' is not followed by whitespace. 733
 Error whitespace ParenPad ')' is not preceded with whitespace. 733
 Error blocks LeftCurly '{' should be on a new line. 733
 Error whitespace ParenPad '(' is not followed by whitespace. 734
 Error whitespace ParenPad ')' is not preceded with whitespace. 734
 Error blocks LeftCurly '{' should be on a new line. 740
 Error blocks LeftCurly '{' should be on a new line. 745
 Error blocks LeftCurly '{' should be on a new line. 750
 Error whitespace ParenPad '(' is not followed by whitespace. 751
 Error whitespace ParenPad ')' is not preceded with whitespace. 751
 Error whitespace ParenPad '(' is not followed by whitespace. 752
 Error whitespace ParenPad '(' is not followed by whitespace. 752
 Error whitespace ParenPad ')' is not preceded with whitespace. 752
 Error whitespace ParenPad ')' is not preceded with whitespace. 752
 Error blocks LeftCurly '{' should be on a new line. 752
 Error whitespace ParenPad '(' is not followed by whitespace. 753
 Error whitespace ParenPad ')' is not preceded with whitespace. 753
 Error blocks RightCurly '}' should be alone on a line. 754
 Error blocks LeftCurly '{' should be on a new line. 754
 Error whitespace ParenPad '(' is not followed by whitespace. 755
 Error whitespace ParenPad ')' is not preceded with whitespace. 755
 Error blocks LeftCurly '{' should be on a new line. 760
 Error whitespace ParenPad '(' is not followed by whitespace. 761
 Error whitespace ParenPad ')' is not preceded with whitespace. 761
 Error blocks LeftCurly '{' should be on a new line. 761
 Error blocks LeftCurly '{' should be on a new line. 769
 Error whitespace ParenPad '(' is not followed by whitespace. 770
 Error whitespace ParenPad ')' is not preceded with whitespace. 770
 Error blocks LeftCurly '{' should be on a new line. 770
 Error blocks LeftCurly '{' should be on a new line. 777
 Error whitespace ParenPad '(' is not followed by whitespace. 778
 Error whitespace ParenPad ')' is not preceded with whitespace. 778
 Error blocks LeftCurly '{' should be on a new line. 778
 Error blocks LeftCurly '{' should be on a new line. 785
 Error whitespace ParenPad '(' is not followed by whitespace. 786
 Error whitespace ParenPad ')' is not preceded with whitespace. 786
 Error blocks LeftCurly '{' should be on a new line. 786
 Error whitespace ParenPad '(' is not followed by whitespace. 793
 Warning coding HiddenField 'registry' hides a field. 793
 Error whitespace ParenPad ')' is not preceded with whitespace. 793
 Error blocks LeftCurly '{' should be on a new line. 793
 Error whitespace ParenPad '(' is not followed by whitespace. 798
 Warning coding HiddenField 'registry' hides a field. 798
 Error whitespace ParenPad ')' is not preceded with whitespace. 798
 Error blocks LeftCurly '{' should be on a new line. 798
 Error whitespace ParenPad '(' is not followed by whitespace. 804
 Error whitespace ParenPad ')' is not preceded with whitespace. 804
 Error blocks LeftCurly '{' should be on a new line. 804
 Error whitespace ParenPad '(' is not followed by whitespace. 805
 Error whitespace ParenPad '(' is not followed by whitespace. 806
 Error whitespace ParenPad ')' is not preceded with whitespace. 806
 Error whitespace ParenPad ')' is not preceded with whitespace. 806
 Error whitespace ParenPad '(' is not followed by whitespace. 807
 Error whitespace ParenPad '(' is not followed by whitespace. 808
 Error whitespace ParenPad ')' is not preceded with whitespace. 808
 Error whitespace ParenPad ')' is not preceded with whitespace. 808
 Error whitespace ParenPad '(' is not followed by whitespace. 812
 Error whitespace ParenPad ')' is not preceded with whitespace. 812
 Error blocks LeftCurly '{' should be on a new line. 812
 Error whitespace ParenPad '(' is not followed by whitespace. 813
 Error whitespace ParenPad ')' is not preceded with whitespace. 813
 Error whitespace ParenPad '(' is not followed by whitespace. 816
 Error whitespace ParenPad ')' is not preceded with whitespace. 816
 Error blocks LeftCurly '{' should be on a new line. 816
 Error whitespace ParenPad '(' is not followed by whitespace. 817
 Error whitespace ParenPad ')' is not preceded with whitespace. 817
 Error whitespace ParenPad '(' is not followed by whitespace. 820
 Error whitespace ParenPad ')' is not preceded with whitespace. 820
 Error blocks LeftCurly '{' should be on a new line. 820
 Error whitespace ParenPad '(' is not followed by whitespace. 822
 Error whitespace ParenPad ')' is not preceded with whitespace. 822
 Error blocks LeftCurly '{' should be on a new line. 822
 Error whitespace ParenPad '(' is not followed by whitespace. 823
 Error whitespace ParenPad '(' is not followed by whitespace. 823
 Error whitespace ParenPad ')' is not preceded with whitespace. 823
 Error whitespace ParenPad ')' is not preceded with whitespace. 823
 Error whitespace ParenPad '(' is not followed by whitespace. 824
 Error whitespace ParenPad '(' is not followed by whitespace. 824
 Error whitespace ParenPad ')' is not preceded with whitespace. 824
 Error whitespace ParenPad ')' is not preceded with whitespace. 824
 Error whitespace ParenPad '(' is not followed by whitespace. 830
 Error whitespace ParenPad ')' is not preceded with whitespace. 830
 Error blocks LeftCurly '{' should be on a new line. 830
 Error sizes LineLength Line is longer than 120 characters (found 124). 833
 Error whitespace ParenPad '(' is not followed by whitespace. 833
 Error whitespace ParenPad ')' is not preceded with whitespace. 833
 Error blocks LeftCurly '{' should be on a new line. 833
 Error whitespace ParenPad '(' is not followed by whitespace. 835
 Error whitespace ParenPad ')' is not preceded with whitespace. 835
 Error whitespace ParenPad '(' is not followed by whitespace. 837
 Error whitespace ParenPad '(' is not followed by whitespace. 837
 Error whitespace ParenPad ')' is not preceded with whitespace. 837
 Error whitespace ParenPad '(' is not followed by whitespace. 837
 Error whitespace ParenPad ')' is not preceded with whitespace. 837
 Error whitespace ParenPad ')' is not preceded with whitespace. 838
 Error whitespace ParenPad ')' is not preceded with whitespace. 838
 Error blocks LeftCurly '{' should be on a new line. 838
 Error whitespace ParenPad '(' is not followed by whitespace. 839
 Error whitespace ParenPad ')' is not preceded with whitespace. 839
 Warning javadoc JavadocMethod Missing a Javadoc comment. 846
 Error blocks LeftCurly '{' should be on a new line. 846
 Warning javadoc JavadocMethod Missing a Javadoc comment. 850
 Error blocks LeftCurly '{' should be on a new line. 850
 Error blocks LeftCurly '{' should be on a new line. 855
 Warning javadoc JavadocMethod Missing a Javadoc comment. 859
 Error blocks LeftCurly '{' should be on a new line. 859
 Warning javadoc JavadocMethod Missing a Javadoc comment. 863
 Error whitespace ParenPad '(' is not followed by whitespace. 863
 Error whitespace ParenPad ')' is not preceded with whitespace. 863
 Error blocks LeftCurly '{' should be on a new line. 863
 Warning javadoc JavadocMethod Missing a Javadoc comment. 868
 Error whitespace ParenPad '(' is not followed by whitespace. 868
 Error whitespace ParenPad ')' is not preceded with whitespace. 868
 Error blocks LeftCurly '{' should be on a new line. 868
 Warning javadoc JavadocMethod Missing a Javadoc comment. 872
 Error whitespace ParenPad '(' is not followed by whitespace. 872
 Error whitespace ParenPad ')' is not preceded with whitespace. 872
 Error blocks LeftCurly '{' should be on a new line. 872

org/apache/archiva/configuration/FileLockConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'lockingTimeout'. 76
 Warning javadoc JavadocMethod Expected @param tag for 'skipLocking'. 86

org/apache/archiva/configuration/FileType.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 56
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 91
 Warning javadoc JavadocMethod Expected @param tag for 'id'. 101
 Warning javadoc JavadocMethod Expected @param tag for 'patterns'. 111

org/apache/archiva/configuration/FileTypes.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is not followed by whitespace. 49
 Error whitespace ParenPad ')' is not preceded with whitespace. 49
 Info javadoc JavadocVariable Missing a Javadoc comment. 53
 Info javadoc JavadocVariable Missing a Javadoc comment. 55
 Info javadoc JavadocVariable Missing a Javadoc comment. 57
 Info javadoc JavadocVariable Missing a Javadoc comment. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 62
 Error whitespace ParenPad ')' is not preceded with whitespace. 62
 Warning javadoc JavadocMethod Missing a Javadoc comment. 66
 Error blocks LeftCurly '{' should be on a new line. 66
 Warning javadoc JavadocMethod Missing a Javadoc comment. 86
 Warning javadoc JavadocMethod Missing a Javadoc comment. 128
 Warning javadoc JavadocMethod Missing a Javadoc comment. 151
 Warning javadoc JavadocMethod Missing a Javadoc comment. 169

org/apache/archiva/configuration/FileTypesTest.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 32
 Warning javadoc JavadocMethod Missing a Javadoc comment. 39
 Warning javadoc JavadocMethod Missing a Javadoc comment. 59

org/apache/archiva/configuration/IndeterminateConfigurationException.java

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

org/apache/archiva/configuration/InvalidConfigurationException.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 30
 Warning javadoc JavadocMethod Missing a Javadoc comment. 36
 Warning javadoc JavadocMethod Missing a Javadoc comment. 43

org/apache/archiva/configuration/LdapConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'key'. 114
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 114
 Warning javadoc JavadocMethod Expected @param tag for 'authenticationMethod'. 259
 Warning javadoc JavadocMethod Expected @param tag for 'baseDn'. 269
 Warning javadoc JavadocMethod Expected @param tag for 'baseGroupsDn'. 279
 Warning javadoc JavadocMethod Expected @param tag for 'bindAuthenticatorEnabled'. 289
 Warning javadoc JavadocMethod Expected @param tag for 'bindDn'. 299
 Warning javadoc JavadocMethod Expected @param tag for 'contextFactory'. 309
 Warning javadoc JavadocMethod Expected @param tag for 'extraProperties'. 319
 Warning javadoc JavadocMethod Expected @param tag for 'hostName'. 329
 Warning javadoc JavadocMethod Expected @param tag for 'password'. 339
 Warning javadoc JavadocMethod Expected @param tag for 'port'. 349
 Warning javadoc JavadocMethod Expected @param tag for 'ssl'. 359
 Warning javadoc JavadocMethod Expected @param tag for 'useRoleNameAsGroup'. 369
 Warning javadoc JavadocMethod Expected @param tag for 'writable'. 379

org/apache/archiva/configuration/LdapGroupMapping.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 56
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 91
 Warning javadoc JavadocMethod Expected @param tag for 'group'. 101
 Warning javadoc JavadocMethod Expected @param tag for 'roleNames'. 111

org/apache/archiva/configuration/LegacyArtifactPath.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'artifact'. 83
 Warning javadoc JavadocMethod Expected @param tag for 'path'. 93
 Warning javadoc JavadocMethod Missing a Javadoc comment. 99
 Warning coding HiddenField 'path' hides a field. 99
 Warning javadoc JavadocMethod Missing a Javadoc comment. 104
 Warning javadoc JavadocMethod Missing a Javadoc comment. 109
 Warning javadoc JavadocMethod Missing a Javadoc comment. 114
 Warning javadoc JavadocMethod Missing a Javadoc comment. 119
 Warning javadoc JavadocMethod Missing a Javadoc comment. 125

org/apache/archiva/configuration/LegacyArtifactPathTest.java

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

org/apache/archiva/configuration/ManagedRepositoryConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'blockRedeployments'. 241
 Warning javadoc JavadocMethod Expected @param tag for 'deleteReleasedSnapshots'. 252
 Warning javadoc JavadocMethod Expected @param tag for 'location'. 262
 Warning javadoc JavadocMethod Expected @param tag for 'refreshCronExpression'. 273
 Warning javadoc JavadocMethod Expected @param tag for 'releases'. 284
 Warning javadoc JavadocMethod Expected @param tag for 'retentionCount'. 295
 Warning javadoc JavadocMethod Expected @param tag for 'retentionPeriod'. 306
 Warning javadoc JavadocMethod Expected @param tag for 'scanned'. 316
 Warning javadoc JavadocMethod Expected @param tag for 'skipPackedIndexCreation'. 327
 Warning javadoc JavadocMethod Expected @param tag for 'snapshots'. 338
 Warning javadoc JavadocMethod Expected @param tag for 'stageRepoNeeded'. 348

org/apache/archiva/configuration/MavenProxyPropertyLoader.java

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

org/apache/archiva/configuration/MavenProxyPropertyLoaderTest.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 43
 Error whitespace ParenPad '(' is not followed by whitespace. 54
 Error whitespace ParenPad ')' is not preceded with whitespace. 54
 Warning javadoc JavadocMethod Missing a Javadoc comment. 85
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 85
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 85
 Warning javadoc JavadocMethod Missing a Javadoc comment. 94

org/apache/archiva/configuration/NetworkConfiguration.java

Severity Category Rule Message Line
 Error coding MagicNumber '30' is a magic number. 42
 Error coding MagicNumber '30' is a magic number. 47
 Warning javadoc JavadocMethod Expected @param tag for 'maxTotal'. 94
 Warning javadoc JavadocMethod Expected @param tag for 'maxTotalPerHost'. 104
 Warning javadoc JavadocMethod Expected @param tag for 'usePooling'. 114

org/apache/archiva/configuration/NetworkProxyConfiguration.java

Severity Category Rule Message Line
 Error coding MagicNumber '8080' is a magic number. 63
 Warning javadoc JavadocMethod Expected @param tag for 'host'. 167
 Warning javadoc JavadocMethod Expected @param tag for 'id'. 177
 Warning javadoc JavadocMethod Expected @param tag for 'password'. 187
 Warning javadoc JavadocMethod Expected @param tag for 'port'. 197
 Warning javadoc JavadocMethod Expected @param tag for 'protocol'. 208
 Warning javadoc JavadocMethod Expected @param tag for 'useNtlm'. 218
 Warning javadoc JavadocMethod Expected @param tag for 'username'. 228
 Warning javadoc JavadocMethod Missing a Javadoc comment. 234
 Warning javadoc JavadocMethod Missing a Javadoc comment. 241

org/apache/archiva/configuration/OrganisationInformation.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'logoLocation'. 93
 Warning javadoc JavadocMethod Expected @param tag for 'name'. 103
 Warning javadoc JavadocMethod Expected @param tag for 'url'. 113

org/apache/archiva/configuration/ProxyConnectorConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'order'. 67

org/apache/archiva/configuration/ProxyConnectorRuleConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorConfiguration'. 67
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectorConfiguration'. 112
 Warning javadoc JavadocMethod Expected @param tag for 'pattern'. 122
 Warning javadoc JavadocMethod Expected @param tag for 'proxyConnectors'. 132
 Warning javadoc JavadocMethod Expected @param tag for 'ruleType'. 142

org/apache/archiva/configuration/RedbackRuntimeConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'key'. 91
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 91
 Warning javadoc JavadocMethod Expected @param tag for 'ldapGroupMapping'. 101
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 111
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 121
 Warning javadoc JavadocMethod Expected @param tag for 'ldapGroupMapping'. 233
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 243
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 253
 Warning javadoc JavadocMethod Expected @param tag for 'configurationProperties'. 264
 Warning javadoc JavadocMethod Expected @param tag for 'ldapConfiguration'. 274
 Warning javadoc JavadocMethod Expected @param tag for 'ldapGroupMappings'. 284
 Warning javadoc JavadocMethod Expected @param tag for 'migratedFromRedbackConfiguration'. 295
 Warning javadoc JavadocMethod Expected @param tag for 'rbacManagerImpls'. 305
 Warning javadoc JavadocMethod Expected @param tag for 'useUsersCache'. 316
 Warning javadoc JavadocMethod Expected @param tag for 'userManagerImpls'. 326
 Warning javadoc JavadocMethod Expected @param tag for 'usersCacheConfiguration'. 336

org/apache/archiva/configuration/RemoteRepositoryConfiguration.java

Severity Category Rule Message Line
 Error coding MagicNumber '60' is a magic number. 64
 Error coding MagicNumber '300' is a magic number. 104
 Warning javadoc JavadocMethod Expected @param tag for 'key'. 142
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 142
 Warning javadoc JavadocMethod Expected @param tag for 'key'. 153
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 153
 Warning javadoc JavadocMethod Expected @param tag for 'checkPath'. 312
 Warning javadoc JavadocMethod Expected @param tag for 'downloadRemoteIndex'. 323
 Warning javadoc JavadocMethod Expected @param tag for 'downloadRemoteIndexOnStartup'. 333
 Warning javadoc JavadocMethod Expected @param tag for 'extraHeaders'. 344
 Warning javadoc JavadocMethod Expected @param tag for 'extraParameters'. 355
 Warning javadoc JavadocMethod Expected @param tag for 'password'. 365
 Warning javadoc JavadocMethod Expected @param tag for 'refreshCronExpression'. 376
 Warning javadoc JavadocMethod Expected @param tag for 'remoteDownloadNetworkProxyId'. 387
 Warning javadoc JavadocMethod Expected @param tag for 'remoteDownloadTimeout'. 398
 Warning javadoc JavadocMethod Expected @param tag for 'remoteIndexUrl'. 409
 Warning javadoc JavadocMethod Expected @param tag for 'timeout'. 419
 Warning javadoc JavadocMethod Expected @param tag for 'url'. 429
 Warning javadoc JavadocMethod Expected @param tag for 'username'. 439
 Warning javadoc JavadocMethod Missing a Javadoc comment. 445
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 447

org/apache/archiva/configuration/RepositoryCheckPath.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'path'. 81
 Warning javadoc JavadocMethod Expected @param tag for 'url'. 91

org/apache/archiva/configuration/RepositoryGroupConfiguration.java

Severity Category Rule Message Line
 Error coding MagicNumber '30' is a magic number. 67
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 91
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 158
 Warning javadoc JavadocMethod Expected @param tag for 'cronExpression'. 169
 Warning javadoc JavadocMethod Expected @param tag for 'id'. 179
 Warning javadoc JavadocMethod Expected @param tag for 'mergedIndexPath'. 189
 Warning javadoc JavadocMethod Expected @param tag for 'mergedIndexTtl'. 200
 Warning javadoc JavadocMethod Expected @param tag for 'repositories'. 210
 Warning javadoc JavadocMethod Missing a Javadoc comment. 215
 Error blocks LeftCurly '{' should be on a new line. 215
 Warning javadoc JavadocMethod Missing a Javadoc comment. 219
 Error whitespace ParenPad '(' is not followed by whitespace. 219
 Error whitespace ParenPad ')' is not preceded with whitespace. 219
 Error blocks LeftCurly '{' should be on a new line. 219
 Warning javadoc JavadocMethod Missing a Javadoc comment. 223
 Error blocks LeftCurly '{' should be on a new line. 223
 Warning javadoc JavadocMethod Missing a Javadoc comment. 227
 Error whitespace ParenPad '(' is not followed by whitespace. 227
 Error whitespace ParenPad ')' is not preceded with whitespace. 227
 Error blocks LeftCurly '{' should be on a new line. 227

org/apache/archiva/configuration/RepositoryScanningConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'fileType'. 61
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 71
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 81
 Warning javadoc JavadocMethod Expected @param tag for 'fileType'. 136
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 146
 Warning javadoc JavadocMethod Expected @param tag for 'string'. 156
 Warning javadoc JavadocMethod Expected @param tag for 'fileTypes'. 166
 Warning javadoc JavadocMethod Expected @param tag for 'invalidContentConsumers'. 176
 Warning javadoc JavadocMethod Expected @param tag for 'knownContentConsumers'. 186

org/apache/archiva/configuration/SyncConnectorConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'cronExpression'. 80
 Warning javadoc JavadocMethod Expected @param tag for 'method'. 90

org/apache/archiva/configuration/UserInterfaceOptions.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'appletFindEnabled'. 125
 Warning javadoc JavadocMethod Expected @param tag for 'applicationUrl'. 135
 Warning javadoc JavadocMethod Expected @param tag for 'disableEasterEggs'. 145
 Warning javadoc JavadocMethod Expected @param tag for 'disableRegistration'. 155
 Warning javadoc JavadocMethod Expected @param tag for 'showFindArtifacts'. 165

org/apache/archiva/configuration/WebappConfiguration.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Expected @param tag for 'ui'. 63

org/apache/archiva/configuration/functors/FiletypeSelectionPredicate.java

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

org/apache/archiva/configuration/functors/FiletypeToMapClosure.java

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

org/apache/archiva/configuration/functors/NetworkProxySelectionPredicate.java

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

org/apache/archiva/configuration/functors/ProxyConnectorConfigurationOrderComparator.java

Severity Category Rule Message Line
 Error naming StaticVariableName Name 'INSTANCE' must match pattern '^[a-z][a-zA-Z0-9]*$'. 34
 Warning javadoc JavadocMethod Missing a Javadoc comment. 70

org/apache/archiva/configuration/functors/ProxyConnectorConfigurationOrderComparatorTest.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 44
 Warning javadoc JavadocMethod Missing a Javadoc comment. 59
 Warning javadoc JavadocMethod Missing a Javadoc comment. 74

org/apache/archiva/configuration/functors/ProxyConnectorSelectionPredicate.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 38
 Error sizes LineLength Line is longer than 120 characters (found 136). 53

org/apache/archiva/configuration/functors/RepositoryConfigurationComparatorTest.java

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

org/apache/archiva/configuration/io/registry/ConfigurationRegistryReader.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^package '. 1
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.archiva.configuration.*. 23
 Error blocks LeftCurly '{' should be on a new line. 36
 Warning javadoc JavadocMethod Missing a Javadoc comment. 37
 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. 37
 Error whitespace ParenPad '(' is not followed by whitespace. 38
 Error whitespace ParenPad ')' is not preceded with whitespace. 38
 Error whitespace ParenPad '(' is not followed by whitespace. 41
 Error whitespace ParenPad ')' is not preceded with whitespace. 41
 Error blocks LeftCurly '{' should be on a new line. 41
 Error whitespace ParenPad '(' is not followed by whitespace. 46
 Error whitespace ParenPad ')' is not preceded with whitespace. 46
 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. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error blocks LeftCurly '{' should be on a new line. 50
 Error whitespace ParenPad '(' is not followed by whitespace. 51
 Error whitespace ParenPad '(' is not followed by whitespace. 51
 Error whitespace ParenPad ')' is not preceded with whitespace. 51
 Error whitespace ParenPad ')' is not preceded with whitespace. 51
 Error whitespace ParenPad '(' is not followed by whitespace. 52
 Error whitespace ParenPad ')' is not preceded with whitespace. 52
 Error blocks LeftCurly '{' should be on a new line. 52
 Error whitespace ParenPad '(' is not followed by whitespace. 53
 Error whitespace ParenPad ')' is not preceded with whitespace. 53
 Error whitespace ParenPad '(' is not followed by whitespace. 59
 Error whitespace ParenPad ')' is not preceded with whitespace. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 62
 Error whitespace ParenPad ')' is not preceded with whitespace. 62
 Error whitespace ParenPad '(' is not followed by whitespace. 64
 Error whitespace ParenPad ')' is not preceded with whitespace. 64
 Error blocks LeftCurly '{' should be on a new line. 64
 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 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 preceded with whitespace. 67
 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. 69
 Error whitespace ParenPad ')' is not preceded with whitespace. 69
 Error whitespace ParenPad '(' is not followed by whitespace. 75
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 77
 Error whitespace ParenPad ')' is not preceded with whitespace. 77
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error blocks LeftCurly '{' should be on a new line. 78
 Error whitespace ParenPad '(' is not followed by whitespace. 79
 Error whitespace ParenPad ')' is not preceded with whitespace. 79
 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. 82
 Error whitespace ParenPad ')' is not preceded with whitespace. 82
 Error whitespace ParenPad '(' 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 blocks LeftCurly '{' should be on a new line. 85
 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. 87
 Error whitespace ParenPad ')' is not preceded with whitespace. 87
 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. 91
 Error whitespace ParenPad ')' is not preceded with whitespace. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 92
 Error blocks LeftCurly '{' should be on a new line. 92
 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. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error whitespace ParenPad '(' is not followed by whitespace. 96
 Error whitespace ParenPad ')' is not preceded with whitespace. 96
 Error whitespace ParenPad '(' is not followed by whitespace. 98
 Error whitespace ParenPad ')' is not preceded with whitespace. 98
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error blocks LeftCurly '{' should be on a new line. 99
 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. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 101
 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. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 105
 Error whitespace ParenPad '(' is not followed by whitespace. 106
 Error blocks LeftCurly '{' should be on a new line. 106
 Error whitespace ParenPad '(' 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 whitespace ParenPad '(' is not followed by whitespace. 110
 Error whitespace ParenPad ')' is not preceded with whitespace. 110
 Error whitespace ParenPad '(' is not followed by whitespace. 112
 Error whitespace ParenPad ')' is not preceded with whitespace. 112
 Error whitespace ParenPad '(' is not followed by whitespace. 113
 Error blocks LeftCurly '{' should be on a new line. 113
 Error whitespace ParenPad '(' is not followed by whitespace. 114
 Error whitespace ParenPad ')' is not preceded with whitespace. 114
 Error whitespace ParenPad '(' is not followed by whitespace. 115
 Error whitespace ParenPad ')' is not preceded with whitespace. 115
 Error whitespace ParenPad '(' is not followed by whitespace. 117
 Error whitespace ParenPad ')' is not preceded with whitespace. 117
 Error sizes LineLength Line is longer than 120 characters (found 139). 118
 Error whitespace ParenPad '(' is not followed by whitespace. 118
 Error whitespace ParenPad ')' is not preceded with whitespace. 118
 Error whitespace ParenPad '(' is not followed by whitespace. 119
 Error whitespace ParenPad ')' is not preceded with whitespace. 119
 Error whitespace ParenPad '(' is not followed by whitespace. 120
 Error whitespace ParenPad ')' is not preceded with whitespace. 120
 Error whitespace ParenPad '(' is not followed by whitespace. 121
 Error whitespace ParenPad ')' is not preceded with whitespace. 121
 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 sizes LineLength Line is longer than 120 characters (found 121). 124
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 125
 Error whitespace ParenPad ')' is not preceded with whitespace. 125
 Error sizes LineLength Line is longer than 120 characters (found 149). 126
 Error whitespace ParenPad '(' is not followed by whitespace. 126
 Error whitespace ParenPad ')' is not preceded with whitespace. 126
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error sizes LineLength Line is longer than 120 characters (found 149). 128
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 129
 Error whitespace ParenPad ')' is not preceded with whitespace. 129
 Error sizes LineLength Line is longer than 120 characters (found 121). 130
 Error sizes LineLength Line is longer than 120 characters (found 155). 131
 Error whitespace ParenPad '(' is not followed by whitespace. 131
 Error whitespace ParenPad ')' is not preceded with whitespace. 131
 Error whitespace ParenPad '(' is not followed by whitespace. 132
 Error blocks LeftCurly '{' should be on a new line. 132
 Error whitespace ParenPad '(' is not followed by whitespace. 133
 Error whitespace ParenPad ')' is not preceded with whitespace. 133
 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. 136
 Error whitespace ParenPad ')' is not preceded with whitespace. 136
 Error sizes LineLength Line is longer than 120 characters (found 149). 137
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace ParenPad ')' is not preceded with whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 138
 Error whitespace ParenPad ')' is not preceded with whitespace. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 143
 Error whitespace ParenPad ')' is not preceded with whitespace. 143
 Error blocks LeftCurly '{' should be on a new line. 143
 Error whitespace ParenPad '(' is not followed by whitespace. 148
 Error whitespace ParenPad ')' is not preceded with whitespace. 148
 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 whitespace ParenPad '(' is not followed by whitespace. 152
 Error whitespace ParenPad ')' is not preceded with whitespace. 152
 Error blocks LeftCurly '{' should be on a new line. 152
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error whitespace ParenPad ')' is not preceded with whitespace. 153
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 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 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. 164
 Error whitespace ParenPad ')' is not preceded with whitespace. 164
 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
 Error whitespace ParenPad '(' is not followed by whitespace. 168
 Error whitespace ParenPad ')' is not preceded with whitespace. 168
 Error blocks LeftCurly '{' should be on a new line. 168
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error whitespace ParenPad '(' is not followed by whitespace. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error blocks LeftCurly '{' should be on a new line. 170
 Error whitespace ParenPad '(' is not followed by whitespace. 171
 Error whitespace ParenPad ')' is not preceded with whitespace. 171
 Error whitespace ParenPad '(' is not followed by whitespace. 177
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error whitespace ParenPad '(' is not followed by whitespace. 180
 Error whitespace ParenPad ')' is not preceded with whitespace. 180
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error blocks LeftCurly '{' should be on a new line. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 184
 Error whitespace ParenPad ')' is not preceded with whitespace. 184
 Error blocks LeftCurly '{' should be on a new line. 184
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 186
 Error whitespace ParenPad ')' is not preceded with whitespace. 186
 Error blocks LeftCurly '{' should be on a new line. 186
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error whitespace ParenPad ')' is not preceded with whitespace. 187
 Error whitespace ParenPad '(' is not followed by whitespace. 193
 Error whitespace ParenPad ')' is not preceded with whitespace. 193
 Error whitespace ParenPad '(' is not followed by whitespace. 196
 Error whitespace ParenPad ')' is not preceded with whitespace. 196
 Error whitespace ParenPad '(' is not followed by whitespace. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error blocks LeftCurly '{' should be on a new line. 198
 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 whitespace ParenPad '(' is not followed by whitespace. 201
 Error whitespace ParenPad '(' is not followed by whitespace. 201
 Error whitespace ParenPad ')' is not preceded with whitespace. 201
 Error whitespace ParenPad ')' is not preceded with whitespace. 201
 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 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. 212
 Error whitespace ParenPad ')' is not preceded with whitespace. 212
 Error whitespace ParenPad '(' is not followed by whitespace. 214
 Error whitespace ParenPad ')' is not preceded with whitespace. 214
 Error blocks LeftCurly '{' should be on a new line. 214
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error blocks LeftCurly '{' should be on a new line. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error whitespace ParenPad ')' is not preceded with whitespace. 217
 Error whitespace ParenPad '(' is not followed by whitespace. 218
 Error whitespace ParenPad ')' is not preceded with whitespace. 218
 Error blocks LeftCurly '{' should be on a new line. 218
 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. 225
 Error whitespace ParenPad ')' is not preceded with whitespace. 225
 Error whitespace ParenPad '(' is not followed by whitespace. 228
 Error whitespace ParenPad ')' is not preceded with whitespace. 228
 Error whitespace ParenPad '(' is not followed by whitespace. 230
 Error whitespace ParenPad ')' is not preceded with whitespace. 230
 Error blocks LeftCurly '{' should be on a new line. 230
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error whitespace ParenPad ')' is not preceded with whitespace. 232
 Error blocks LeftCurly '{' should be on a new line. 232
 Error whitespace ParenPad '(' is not followed by whitespace. 233
 Error whitespace ParenPad '(' is not followed by whitespace. 233
 Error whitespace ParenPad ')' is not preceded with whitespace. 233
 Error whitespace ParenPad ')' is not preceded with whitespace. 233
 Error whitespace ParenPad '(' is not followed by whitespace. 234
 Error whitespace ParenPad ')' is not preceded with whitespace. 234
 Error blocks LeftCurly '{' should be on a new line. 234
 Error whitespace ParenPad '(' is not followed by whitespace. 235
 Error whitespace ParenPad ')' is not preceded with whitespace. 235
 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. 244
 Error whitespace ParenPad ')' is not preceded with whitespace. 244
 Error whitespace ParenPad '(' is not followed by whitespace. 246
 Error whitespace ParenPad ')' is not preceded with whitespace. 246
 Error blocks LeftCurly '{' should be on a new line. 246
 Error whitespace ParenPad '(' is not followed by whitespace. 248
 Error whitespace ParenPad ')' is not preceded with whitespace. 248
 Error blocks LeftCurly '{' should be on a new line. 248
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 249
 Error whitespace ParenPad '(' is not followed by whitespace. 250
 Error whitespace ParenPad ')' is not preceded with whitespace. 250
 Error blocks LeftCurly '{' should be on a new line. 250
 Error whitespace ParenPad '(' is not followed by whitespace. 251
 Error whitespace ParenPad ')' is not preceded with whitespace. 251
 Error whitespace ParenPad '(' is not followed by whitespace. 257
 Error whitespace ParenPad ')' is not preceded with whitespace. 257
 Error sizes MethodLength Method length is 242 lines (max allowed is 150). 262
 Error whitespace ParenPad '(' is not followed by whitespace. 262
 Error whitespace ParenPad ')' is not preceded with whitespace. 262
 Error blocks LeftCurly '{' should be on a new line. 262
 Error whitespace ParenPad '(' is not followed by whitespace. 267
 Error whitespace ParenPad ')' is not preceded with whitespace. 267
 Error whitespace ParenPad '(' is not followed by whitespace. 269
 Error whitespace ParenPad ')' is not preceded with whitespace. 269
 Error blocks LeftCurly '{' should be on a new line. 269
 Error whitespace ParenPad '(' is not followed by whitespace. 271
 Error whitespace ParenPad ')' is not preceded with whitespace. 271
 Error blocks LeftCurly '{' should be on a new line. 271
 Error whitespace ParenPad '(' is not followed by whitespace. 272
 Error whitespace ParenPad '(' is not followed by whitespace. 272
 Error whitespace ParenPad ')' is not preceded with whitespace. 272
 Error whitespace ParenPad ')' is not preceded with whitespace. 272
 Error whitespace ParenPad '(' is not followed by whitespace. 273
 Error whitespace ParenPad ')' is not preceded with whitespace. 273
 Error blocks LeftCurly '{' should be on a new line. 273
 Error whitespace ParenPad '(' is not followed by whitespace. 274
 Error whitespace ParenPad ')' is not preceded with whitespace. 274
 Error whitespace ParenPad '(' is not followed by whitespace. 280
 Error whitespace ParenPad ')' is not preceded with whitespace. 280
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error whitespace ParenPad ')' is not preceded with whitespace. 283
 Error whitespace ParenPad '(' is not followed by whitespace. 285
 Error whitespace ParenPad ')' is not preceded with whitespace. 285
 Error blocks LeftCurly '{' should be on a new line. 285
 Error whitespace ParenPad '(' is not followed by whitespace. 287
 Error whitespace ParenPad ')' is not preceded with whitespace. 287
 Error blocks LeftCurly '{' should be on a new line. 287
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error whitespace ParenPad ')' is not preceded with whitespace. 288
 Error whitespace ParenPad '(' is not followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error blocks LeftCurly '{' should be on a new line. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 296
 Error whitespace ParenPad ')' is not preceded with whitespace. 296
 Error whitespace ParenPad '(' is not followed by whitespace. 299
 Error whitespace ParenPad ')' is not preceded with whitespace. 299
 Error whitespace ParenPad '(' is not followed by whitespace. 301
 Error whitespace ParenPad ')' is not preceded with whitespace. 301
 Error blocks LeftCurly '{' should be on a new line. 301
 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 ParenPad '(' is not followed by whitespace. 304
 Error whitespace ParenPad ')' is not preceded with whitespace. 304
 Error whitespace ParenPad ')' is not preceded with whitespace. 304
 Error whitespace ParenPad '(' is not followed by whitespace. 305
 Error whitespace ParenPad ')' is not preceded with whitespace. 305
 Error blocks LeftCurly '{' should be on a new line. 305
 Error whitespace ParenPad '(' is not followed by whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error whitespace ParenPad '(' is not followed by whitespace. 312
 Error whitespace ParenPad ')' is not preceded with whitespace. 312
 Error whitespace ParenPad '(' is not followed by whitespace. 313
 Error whitespace ParenPad ')' is not preceded with whitespace. 313
 Error whitespace ParenPad '(' is not followed by whitespace. 314
 Error whitespace ParenPad ')' is not preceded with whitespace. 314
 Error sizes LineLength Line is longer than 120 characters (found 130). 315
 Error whitespace ParenPad '(' is not followed by whitespace. 317
 Error whitespace ParenPad ')' is not preceded with whitespace. 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 whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error blocks LeftCurly '{' should be on a new line. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 322
 Error whitespace ParenPad '(' is not followed by whitespace. 322
 Error whitespace ParenPad ')' is not preceded with whitespace. 322
 Error whitespace ParenPad ')' is not preceded with whitespace. 322
 Error whitespace ParenPad '(' is not followed by whitespace. 323
 Error whitespace ParenPad ')' is not preceded with whitespace. 323
 Error blocks LeftCurly '{' should be on a new line. 323
 Error whitespace ParenPad '(' is not followed by whitespace. 324
 Error whitespace ParenPad ')' is not preceded with whitespace. 324
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 330
 Error sizes LineLength Line is longer than 120 characters (found 121). 331
 Error whitespace ParenPad '(' is not followed by whitespace. 331
 Error whitespace ParenPad ')' is not preceded with whitespace. 331
 Error whitespace ParenPad '(' is not followed by whitespace. 332
 Error whitespace ParenPad ')' is not preceded with whitespace. 332
 Error whitespace ParenPad '(' is not followed by whitespace. 335
 Error whitespace ParenPad ')' is not preceded with whitespace. 335
 Error whitespace ParenPad '(' is not followed by whitespace. 337
 Error whitespace ParenPad ')' is not preceded with whitespace. 337
 Error blocks LeftCurly '{' should be on a new line. 337
 Error whitespace ParenPad '(' is not followed by whitespace. 339
 Error whitespace ParenPad ')' is not preceded with whitespace. 339
 Error blocks LeftCurly '{' should be on a new line. 339
 Error whitespace ParenPad '(' is not followed by whitespace. 340
 Error whitespace ParenPad '(' is not followed by whitespace. 340
 Error whitespace ParenPad ')' is not preceded with whitespace. 340
 Error whitespace ParenPad ')' is not preceded with whitespace. 340
 Error whitespace ParenPad '(' is not followed by whitespace. 341
 Error whitespace ParenPad ')' is not preceded with whitespace. 341
 Error blocks LeftCurly '{' should be on a new line. 341
 Error whitespace ParenPad '(' is not followed by whitespace. 342
 Error whitespace ParenPad ')' is not preceded with whitespace. 342
 Error whitespace ParenPad '(' is not followed by whitespace. 348
 Error whitespace ParenPad ')' is not preceded with whitespace. 348
 Error sizes LineLength Line is longer than 120 characters (found 151). 349
 Error whitespace ParenPad '(' is not followed by whitespace. 351
 Error whitespace ParenPad ')' is not preceded with whitespace. 351
 Error whitespace ParenPad '(' is not followed by whitespace. 353
 Error whitespace ParenPad ')' is not preceded with whitespace. 353
 Error blocks LeftCurly '{' should be on a new line. 353
 Error whitespace ParenPad '(' is not followed by whitespace. 355
 Error whitespace ParenPad ')' is not preceded with whitespace. 355
 Error blocks LeftCurly '{' should be on a new line. 355
 Error whitespace ParenPad '(' is not followed by whitespace. 356
 Error whitespace ParenPad '(' is not followed by whitespace. 356
 Error whitespace ParenPad ')' is not preceded with whitespace. 356
 Error whitespace ParenPad ')' is not preceded with whitespace. 356
 Error whitespace ParenPad '(' is not followed by whitespace. 357
 Error whitespace ParenPad ')' is not preceded with whitespace. 357
 Error blocks LeftCurly '{' should be on a new line. 357
 Error whitespace ParenPad '(' is not followed by whitespace. 358
 Error whitespace ParenPad ')' is not preceded with whitespace. 358
 Error whitespace ParenPad '(' is not followed by whitespace. 364
 Error whitespace ParenPad ')' is not preceded with whitespace. 364
 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. 366
 Error whitespace ParenPad ')' is not preceded with whitespace. 366
 Error sizes LineLength Line is longer than 120 characters (found 148). 367
 Error whitespace ParenPad '(' is not followed by whitespace. 367
 Error whitespace ParenPad ')' is not preceded with whitespace. 367
 Error whitespace ParenPad '(' is not followed by whitespace. 368
 Error whitespace ParenPad ')' is not preceded with whitespace. 368
 Error whitespace ParenPad '(' is not followed by whitespace. 369
 Error whitespace ParenPad ')' is not preceded with whitespace. 369
 Error whitespace ParenPad '(' is not followed by whitespace. 370
 Error whitespace ParenPad ')' is not preceded with whitespace. 370
 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. 372
 Error whitespace ParenPad ')' is not preceded with whitespace. 372
 Error whitespace ParenPad '(' is not followed by whitespace. 375
 Error whitespace ParenPad ')' is not preceded with whitespace. 375
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error blocks LeftCurly '{' should be on a new line. 377
 Error whitespace ParenPad '(' is not followed by whitespace. 379
 Error whitespace ParenPad ')' is not preceded with whitespace. 379
 Error blocks LeftCurly '{' should be on a new line. 379
 Error whitespace ParenPad '(' is not followed by whitespace. 380
 Error whitespace ParenPad '(' is not followed by whitespace. 380
 Error whitespace ParenPad ')' is not preceded with whitespace. 380
 Error whitespace ParenPad ')' is not preceded with whitespace. 380
 Error whitespace ParenPad '(' is not followed by whitespace. 381
 Error whitespace ParenPad ')' is not preceded with whitespace. 381
 Error blocks LeftCurly '{' should be on a new line. 381
 Error whitespace ParenPad '(' is not followed by whitespace. 382
 Error whitespace ParenPad ')' is not preceded with whitespace. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 388
 Error whitespace ParenPad ')' is not preceded with whitespace. 388
 Error whitespace ParenPad '(' is not followed by whitespace. 391
 Error whitespace ParenPad ')' is not preceded with whitespace. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 393
 Error whitespace ParenPad ')' is not preceded with whitespace. 393
 Error blocks LeftCurly '{' should be on a new line. 393
 Error whitespace ParenPad '(' is not followed by whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 395
 Error blocks LeftCurly '{' should be on a new line. 395
 Error whitespace ParenPad '(' is not followed by whitespace. 396
 Error whitespace ParenPad '(' is not followed by whitespace. 396
 Error whitespace ParenPad ')' is not preceded with whitespace. 396
 Error whitespace ParenPad ')' is not preceded with whitespace. 396
 Error whitespace ParenPad '(' is not followed by whitespace. 397
 Error whitespace ParenPad ')' is not preceded with whitespace. 397
 Error blocks LeftCurly '{' should be on a new line. 397
 Error whitespace ParenPad '(' is not followed by whitespace. 398
 Error whitespace ParenPad ')' is not preceded with whitespace. 398
 Error whitespace ParenPad '(' is not followed by whitespace. 404
 Error whitespace ParenPad ')' is not preceded with whitespace. 404
 Error whitespace ParenPad '(' is not followed by whitespace. 407
 Error whitespace ParenPad ')' is not preceded with whitespace. 407
 Error whitespace ParenPad '(' is not followed by whitespace. 409
 Error whitespace ParenPad ')' is not preceded with whitespace. 409
 Error blocks LeftCurly '{' should be on a new line. 409
 Error whitespace ParenPad '(' is not followed by whitespace. 411
 Error whitespace ParenPad ')' is not preceded with whitespace. 411
 Error blocks LeftCurly '{' should be on a new line. 411
 Error whitespace ParenPad '(' is not followed by whitespace. 412
 Error whitespace ParenPad '(' is not followed by whitespace. 412
 Error whitespace ParenPad ')' is not preceded with whitespace. 412
 Error whitespace ParenPad ')' is not preceded with whitespace. 412
 Error whitespace ParenPad '(' is not followed by whitespace. 413
 Error whitespace ParenPad ')' is not preceded with whitespace. 413
 Error blocks LeftCurly '{' should be on a new line. 413
 Error whitespace ParenPad '(' is not followed by whitespace. 414
 Error whitespace ParenPad ')' is not preceded with whitespace. 414
 Error whitespace ParenPad '(' is not followed by whitespace. 420
 Error whitespace ParenPad ')' is not preceded with whitespace. 420
 Error whitespace ParenPad '(' is not followed by whitespace. 423
 Error whitespace ParenPad ')' is not preceded with whitespace. 423
 Error whitespace ParenPad '(' is not followed by whitespace. 425
 Error whitespace ParenPad ')' is not preceded with whitespace. 425
 Error blocks LeftCurly '{' should be on a new line. 425
 Error whitespace ParenPad '(' is not followed by whitespace. 427
 Error whitespace ParenPad ')' is not preceded with whitespace. 427
 Error blocks LeftCurly '{' should be on a new line. 427
 Error whitespace ParenPad '(' is not followed by whitespace. 428
 Error whitespace ParenPad '(' is not followed by whitespace. 428
 Error whitespace ParenPad ')' is not preceded with whitespace. 428
 Error whitespace ParenPad ')' is not preceded with whitespace. 428
 Error whitespace ParenPad '(' is not followed by whitespace. 429
 Error whitespace ParenPad ')' is not preceded with whitespace. 429
 Error blocks LeftCurly '{' should be on a new line. 429
 Error whitespace ParenPad '(' is not followed by whitespace. 430
 Error whitespace ParenPad ')' is not preceded with whitespace. 430
 Error whitespace ParenPad '(' is not followed by whitespace. 436
 Error whitespace ParenPad ')' is not preceded with whitespace. 436
 Error whitespace ParenPad '(' is not followed by whitespace. 439
 Error whitespace ParenPad ')' is not preceded with whitespace. 439
 Error whitespace ParenPad '(' is not followed by whitespace. 441
 Error whitespace ParenPad ')' is not preceded with whitespace. 441
 Error blocks LeftCurly '{' should be on a new line. 441
 Error whitespace ParenPad '(' is not followed by whitespace. 443
 Error whitespace ParenPad ')' is not preceded with whitespace. 443
 Error blocks LeftCurly '{' should be on a new line. 443
 Error whitespace ParenPad '(' is not followed by whitespace. 444
 Error whitespace ParenPad '(' is not followed by whitespace. 444
 Error whitespace ParenPad ')' is not preceded with whitespace. 444
 Error whitespace ParenPad ')' is not preceded with whitespace. 444
 Error whitespace ParenPad '(' is not followed by whitespace. 445
 Error whitespace ParenPad ')' is not preceded with whitespace. 445
 Error blocks LeftCurly '{' should be on a new line. 445
 Error whitespace ParenPad '(' is not followed by whitespace. 446
 Error whitespace ParenPad ')' is not preceded with whitespace. 446
 Error whitespace ParenPad '(' is not followed by whitespace. 452
 Error whitespace ParenPad ')' is not preceded with whitespace. 452
 Error whitespace ParenPad '(' is not followed by whitespace. 455
 Error whitespace ParenPad ')' is not preceded with whitespace. 455
 Error whitespace ParenPad '(' is not followed by whitespace. 457
 Error whitespace ParenPad ')' is not preceded with whitespace. 457
 Error blocks LeftCurly '{' should be on a new line. 457
 Error whitespace ParenPad '(' is not followed by whitespace. 459
 Error whitespace ParenPad ')' is not preceded with whitespace. 459
 Error blocks LeftCurly '{' should be on a new line. 459
 Error whitespace ParenPad '(' is not followed by whitespace. 460
 Error whitespace ParenPad '(' is not followed by whitespace. 460
 Error whitespace ParenPad ')' is not preceded with whitespace. 460
 Error whitespace ParenPad ')' is not preceded with whitespace. 460
 Error whitespace ParenPad '(' is not followed by whitespace. 461
 Error whitespace ParenPad ')' is not preceded with whitespace. 461
 Error blocks LeftCurly '{' should be on a new line. 461
 Error whitespace ParenPad '(' is not followed by whitespace. 462
 Error whitespace ParenPad ')' is not preceded with whitespace. 462
 Error whitespace ParenPad '(' is not followed by whitespace. 468
 Error whitespace ParenPad ')' is not preceded with whitespace. 468
 Error whitespace ParenPad '(' is not followed by whitespace. 471
 Error whitespace ParenPad ')' is not preceded with whitespace. 471
 Error whitespace ParenPad '(' is not followed by whitespace. 473
 Error whitespace ParenPad ')' is not preceded with whitespace. 473
 Error blocks LeftCurly '{' should be on a new line. 473
 Error whitespace ParenPad '(' is not followed by whitespace. 475
 Error whitespace ParenPad ')' is not preceded with whitespace. 475
 Error blocks LeftCurly '{' should be on a new line. 475
 Error whitespace ParenPad '(' is not followed by whitespace. 476
 Error whitespace ParenPad '(' is not followed by whitespace. 476
 Error whitespace ParenPad ')' is not preceded with whitespace. 476
 Error whitespace ParenPad ')' is not preceded with whitespace. 476
 Error whitespace ParenPad '(' is not followed by whitespace. 477
 Error whitespace ParenPad ')' is not preceded with whitespace. 477
 Error blocks LeftCurly '{' should be on a new line. 477
 Error whitespace ParenPad '(' is not followed by whitespace. 478
 Error whitespace ParenPad ')' is not preceded with whitespace. 478
 Error whitespace ParenPad '(' is not followed by whitespace. 484
 Error whitespace ParenPad ')' is not preceded with whitespace. 484
 Error whitespace ParenPad '(' is not followed by whitespace. 487
 Error whitespace ParenPad ')' is not preceded with whitespace. 487
 Error whitespace ParenPad '(' is not followed by whitespace. 489
 Error whitespace ParenPad ')' is not preceded with whitespace. 489
 Error blocks LeftCurly '{' should be on a new line. 489
 Error whitespace ParenPad '(' is not followed by whitespace. 491
 Error whitespace ParenPad ')' is not preceded with whitespace. 491
 Error blocks LeftCurly '{' should be on a new line. 491
 Error whitespace ParenPad '(' is not followed by whitespace. 492
 Error whitespace ParenPad '(' is not followed by whitespace. 492
 Error whitespace ParenPad ')' is not preceded with whitespace. 492
 Error whitespace ParenPad ')' is not preceded with whitespace. 492
 Error whitespace ParenPad '(' is not followed by whitespace. 493
 Error whitespace ParenPad ')' is not preceded with whitespace. 493
 Error blocks LeftCurly '{' should be on a new line. 493
 Error whitespace ParenPad '(' is not followed by whitespace. 494
 Error whitespace ParenPad ')' is not preceded with whitespace. 494
 Error whitespace ParenPad '(' is not followed by whitespace. 500
 Error whitespace ParenPad ')' is not preceded with whitespace. 500
 Error sizes MethodLength Method length is 168 lines (max allowed is 150). 505
 Error whitespace ParenPad '(' is not followed by whitespace. 505
 Error whitespace ParenPad ')' is not preceded with whitespace. 505
 Error blocks LeftCurly '{' should be on a new line. 505
 Error whitespace ParenPad '(' is not followed by whitespace. 510
 Error whitespace ParenPad ')' is not preceded with whitespace. 510
 Error whitespace ParenPad '(' is not followed by whitespace. 512
 Error whitespace ParenPad ')' is not preceded with whitespace. 512
 Error blocks LeftCurly '{' should be on a new line. 512
 Error whitespace ParenPad '(' is not followed by whitespace. 514
 Error whitespace ParenPad ')' is not preceded with whitespace. 514
 Error blocks LeftCurly '{' should be on a new line. 514
 Error whitespace ParenPad '(' is not followed by whitespace. 515
 Error whitespace ParenPad '(' is not followed by whitespace. 515
 Error whitespace ParenPad ')' is not preceded with whitespace. 515
 Error whitespace ParenPad ')' is not preceded with whitespace. 515
 Error whitespace ParenPad '(' is not followed by whitespace. 516
 Error whitespace ParenPad ')' is not preceded with whitespace. 516
 Error blocks LeftCurly '{' should be on a new line. 516
 Error whitespace ParenPad '(' is not followed by whitespace. 517
 Error whitespace ParenPad ')' is not preceded with whitespace. 517
 Error whitespace ParenPad '(' is not followed by whitespace. 523
 Error whitespace ParenPad ')' is not preceded with whitespace. 523
 Error whitespace ParenPad '(' is not followed by whitespace. 524
 Error whitespace ParenPad ')' is not preceded with whitespace. 524
 Error whitespace ParenPad '(' is not followed by whitespace. 525
 Error whitespace ParenPad ')' is not preceded with whitespace. 525
 Error whitespace ParenPad '(' is not followed by whitespace. 526
 Error whitespace ParenPad ')' is not preceded with whitespace. 526
 Error whitespace ParenPad '(' is not followed by whitespace. 527
 Error whitespace ParenPad ')' is not preceded with whitespace. 527
 Error whitespace ParenPad '(' is not followed by whitespace. 528
 Error whitespace ParenPad ')' is not preceded with whitespace. 528
 Error whitespace ParenPad '(' is not followed by whitespace. 529
 Error whitespace ParenPad ')' is not preceded with whitespace. 529
 Error whitespace ParenPad '(' is not followed by whitespace. 530
 Error whitespace ParenPad ')' is not preceded with whitespace. 530
 Error whitespace ParenPad '(' is not followed by whitespace. 531
 Error whitespace ParenPad ')' is not preceded with whitespace. 531
 Error sizes LineLength Line is longer than 120 characters (found 130). 532
 Error whitespace ParenPad '(' is not followed by whitespace. 534
 Error whitespace ParenPad ')' is not preceded with whitespace. 534
 Error whitespace ParenPad '(' is not followed by whitespace. 536
 Error whitespace ParenPad ')' is not preceded with whitespace. 536
 Error blocks LeftCurly '{' should be on a new line. 536
 Error whitespace ParenPad '(' is not followed by whitespace. 538
 Error whitespace ParenPad ')' is not preceded with whitespace. 538
 Error blocks LeftCurly '{' should be on a new line. 538
 Error whitespace ParenPad '(' is not followed by whitespace. 539
 Error whitespace ParenPad '(' is not followed by whitespace. 539
 Error whitespace ParenPad ')' is not preceded with whitespace. 539
 Error whitespace ParenPad ')' is not preceded with whitespace. 539
 Error whitespace ParenPad '(' is not followed by whitespace. 540
 Error whitespace ParenPad ')' is not preceded with whitespace. 540
 Error blocks LeftCurly '{' should be on a new line. 540
 Error whitespace ParenPad '(' is not followed by whitespace. 541
 Error whitespace ParenPad ')' is not preceded with whitespace. 541
 Error whitespace ParenPad '(' is not followed by whitespace. 547
 Error whitespace ParenPad ')' is not preceded with whitespace. 547
 Error whitespace ParenPad '(' is not followed by whitespace. 548
 Error whitespace ParenPad ')' is not preceded with whitespace. 548
 Error whitespace ParenPad '(' is not followed by whitespace. 549
 Error whitespace ParenPad ')' is not preceded with whitespace. 549
 Error whitespace ParenPad '(' is not followed by whitespace. 550
 Error whitespace ParenPad ')' is not preceded with whitespace. 550
 Error whitespace ParenPad '(' is not followed by whitespace. 551
 Error whitespace ParenPad ')' is not preceded with whitespace. 551
 Error sizes LineLength Line is longer than 120 characters (found 133). 552
 Error whitespace ParenPad '(' is not followed by whitespace. 552
 Error whitespace ParenPad ')' is not preceded with whitespace. 552
 Error whitespace ParenPad '(' is not followed by whitespace. 553
 Error whitespace ParenPad ')' is not preceded with whitespace. 553
 Error sizes LineLength Line is longer than 120 characters (found 133). 554
 Error whitespace ParenPad '(' is not followed by whitespace. 554
 Error whitespace ParenPad ')' is not preceded with whitespace. 554
 Error whitespace ParenPad '(' is not followed by whitespace. 555
 Error whitespace ParenPad ')' is not preceded with whitespace. 555
 Error whitespace ParenPad '(' is not followed by whitespace. 556
 Error whitespace ParenPad ')' is not preceded with whitespace. 556
 Error whitespace ParenPad '(' is not followed by whitespace. 557
 Error whitespace ParenPad ')' is not preceded with whitespace. 557
 Error whitespace ParenPad '(' is not followed by whitespace. 560
 Error whitespace ParenPad ')' is not preceded with whitespace. 560
 Error whitespace ParenPad '(' is not followed by whitespace. 562
 Error whitespace ParenPad ')' is not preceded with whitespace. 562
 Error blocks LeftCurly '{' should be on a new line. 562
 Error whitespace ParenPad '(' is not followed by whitespace. 564
 Error whitespace ParenPad ')' is not preceded with whitespace. 564
 Error blocks LeftCurly '{' should be on a new line. 564
 Error whitespace ParenPad '(' is not followed by whitespace. 565
 Error whitespace ParenPad '(' is not followed by whitespace. 565
 Error whitespace ParenPad ')' is not preceded with whitespace. 565
 Error whitespace ParenPad ')' is not preceded with whitespace. 565
 Error whitespace ParenPad '(' is not followed by whitespace. 566
 Error whitespace ParenPad ')' is not preceded with whitespace. 566
 Error blocks LeftCurly '{' should be on a new line. 566
 Error whitespace ParenPad '(' is not followed by whitespace. 567
 Error whitespace ParenPad ')' is not preceded with whitespace. 567
 Error whitespace ParenPad '(' is not followed by whitespace. 573
 Error whitespace ParenPad ')' is not preceded with whitespace. 573
 Error whitespace ParenPad '(' is not followed by whitespace. 576
 Error whitespace ParenPad ')' is not preceded with whitespace. 576
 Error whitespace ParenPad '(' is not followed by whitespace. 578
 Error whitespace ParenPad ')' is not preceded with whitespace. 578
 Error blocks LeftCurly '{' should be on a new line. 578
 Error whitespace ParenPad '(' is not followed by whitespace. 580
 Error whitespace ParenPad ')' is not preceded with whitespace. 580
 Error blocks LeftCurly '{' should be on a new line. 580
 Error whitespace ParenPad '(' is not followed by whitespace. 581
 Error whitespace ParenPad '(' is not followed by whitespace. 581
 Error whitespace ParenPad ')' is not preceded with whitespace. 581
 Error whitespace ParenPad ')' is not preceded with whitespace. 581
 Error whitespace ParenPad '(' is not followed by whitespace. 582
 Error whitespace ParenPad ')' is not preceded with whitespace. 582
 Error blocks LeftCurly '{' should be on a new line. 582
 Error whitespace ParenPad '(' is not followed by whitespace. 583
 Error whitespace ParenPad ')' is not preceded with whitespace. 583
 Error whitespace ParenPad '(' is not followed by whitespace. 589
 Error whitespace ParenPad ')' is not preceded with whitespace. 589
 Error whitespace ParenPad '(' is not followed by whitespace. 592
 Error whitespace ParenPad ')' is not preceded with whitespace. 592
 Error whitespace ParenPad '(' is not followed by whitespace. 594
 Error whitespace ParenPad ')' is not preceded with whitespace. 594
 Error blocks LeftCurly '{' should be on a new line. 594
 Error whitespace ParenPad '(' is not followed by whitespace. 596
 Error whitespace ParenPad ')' is not preceded with whitespace. 596
 Error blocks LeftCurly '{' should be on a new line. 596
 Error whitespace ParenPad '(' is not followed by whitespace. 597
 Error whitespace ParenPad '(' is not followed by whitespace. 597
 Error whitespace ParenPad ')' is not preceded with whitespace. 597
 Error whitespace ParenPad ')' is not preceded with whitespace. 597
 Error whitespace ParenPad '(' is not followed by whitespace. 598
 Error whitespace ParenPad ')' is not preceded with whitespace. 598
 Error blocks LeftCurly '{' should be on a new line. 598
 Error whitespace ParenPad '(' is not followed by whitespace. 599
 Error whitespace ParenPad ')' is not preceded with whitespace. 599
 Error whitespace ParenPad '(' is not followed by whitespace. 605
 Error whitespace ParenPad ')' is not preceded with whitespace. 605
 Error whitespace ParenPad '(' is not followed by whitespace. 608
 Error whitespace ParenPad ')' is not preceded with whitespace. 608
 Error whitespace ParenPad '(' is not followed by whitespace. 610
 Error whitespace ParenPad ')' is not preceded with whitespace. 610
 Error blocks LeftCurly '{' should be on a new line. 610
 Error whitespace ParenPad '(' is not followed by whitespace. 612
 Error whitespace ParenPad ')' is not preceded with whitespace. 612
 Error blocks LeftCurly '{' should be on a new line. 612
 Error whitespace ParenPad '(' is not followed by whitespace. 613
 Error whitespace ParenPad '(' is not followed by whitespace. 613
 Error whitespace ParenPad ')' is not preceded with whitespace. 613
 Error whitespace ParenPad ')' is not preceded with whitespace. 613
 Error whitespace ParenPad '(' is not followed by whitespace. 614
 Error whitespace ParenPad ')' is not preceded with whitespace. 614
 Error blocks LeftCurly '{' should be on a new line. 614
 Error whitespace ParenPad '(' is not followed by whitespace. 615
 Error whitespace ParenPad ')' is not preceded with whitespace. 615
 Error whitespace ParenPad '(' is not followed by whitespace. 621
 Error whitespace ParenPad ')' is not preceded with whitespace. 621
 Error whitespace ParenPad '(' is not followed by whitespace. 624
 Error whitespace ParenPad ')' is not preceded with whitespace. 624
 Error whitespace ParenPad '(' is not followed by whitespace. 626
 Error whitespace ParenPad ')' is not preceded with whitespace. 626
 Error blocks LeftCurly '{' should be on a new line. 626
 Error whitespace ParenPad '(' is not followed by whitespace. 628
 Error whitespace ParenPad ')' is not preceded with whitespace. 628
 Error blocks LeftCurly '{' should be on a new line. 628
 Error whitespace ParenPad '(' is not followed by whitespace. 629
 Error whitespace ParenPad '(' is not followed by whitespace. 629
 Error whitespace ParenPad ')' is not preceded with whitespace. 629
 Error whitespace ParenPad ')' is not preceded with whitespace. 629
 Error whitespace ParenPad '(' is not followed by whitespace. 630
 Error whitespace ParenPad ')' is not preceded with whitespace. 630
 Error blocks LeftCurly '{' should be on a new line. 630
 Error whitespace ParenPad '(' is not followed by whitespace. 631
 Error whitespace ParenPad ')' is not preceded with whitespace. 631
 Error whitespace ParenPad '(' is not followed by whitespace. 637
 Error whitespace ParenPad ')' is not preceded with whitespace. 637
 Error whitespace ParenPad '(' is not followed by whitespace. 640
 Error whitespace ParenPad ')' is not preceded with whitespace. 640
 Error whitespace ParenPad '(' is not followed by whitespace. 642
 Error whitespace ParenPad ')' is not preceded with whitespace. 642
 Error blocks LeftCurly '{' should be on a new line. 642
 Error whitespace ParenPad '(' is not followed by whitespace. 644
 Error whitespace ParenPad ')' is not preceded with whitespace. 644
 Error blocks LeftCurly '{' should be on a new line. 644
 Error whitespace ParenPad '(' is not followed by whitespace. 645
 Error whitespace ParenPad '(' is not followed by whitespace. 645
 Error whitespace ParenPad ')' is not preceded with whitespace. 645
 Error whitespace ParenPad ')' is not preceded with whitespace. 645
 Error whitespace ParenPad '(' is not followed by whitespace. 646
 Error whitespace ParenPad ')' is not preceded with whitespace. 646
 Error blocks LeftCurly '{' should be on a new line. 646
 Error whitespace ParenPad '(' is not followed by whitespace. 647
 Error whitespace ParenPad ')' is not preceded with whitespace. 647
 Error whitespace ParenPad '(' is not followed by whitespace. 653
 Error whitespace ParenPad ')' is not preceded with whitespace. 653
 Error whitespace ParenPad '(' is not followed by whitespace. 656
 Error whitespace ParenPad ')' is not preceded with whitespace. 656
 Error whitespace ParenPad '(' is not followed by whitespace. 658
 Error whitespace ParenPad ')' is not preceded with whitespace. 658
 Error blocks LeftCurly '{' should be on a new line. 658
 Error whitespace ParenPad '(' is not followed by whitespace. 660
 Error whitespace ParenPad ')' is not preceded with whitespace. 660
 Error blocks LeftCurly '{' should be on a new line. 660
 Error whitespace ParenPad '(' is not followed by whitespace. 661
 Error whitespace ParenPad '(' is not followed by whitespace. 661
 Error whitespace ParenPad ')' is not preceded with whitespace. 661
 Error whitespace ParenPad ')' is not preceded with whitespace. 661
 Error whitespace ParenPad '(' is not followed by whitespace. 662
 Error whitespace ParenPad ')' is not preceded with whitespace. 662
 Error blocks LeftCurly '{' should be on a new line. 662
 Error whitespace ParenPad '(' is not followed by whitespace. 663
 Error whitespace ParenPad ')' is not preceded with whitespace. 663
 Error whitespace ParenPad '(' is not followed by whitespace. 669
 Error whitespace ParenPad ')' is not preceded with whitespace. 669
 Error whitespace ParenPad '(' is not followed by whitespace. 674
 Error whitespace ParenPad ')' is not preceded with whitespace. 674
 Error blocks LeftCurly '{' should be on a new line. 674
 Error whitespace ParenPad '(' is not followed by whitespace. 679
 Error whitespace ParenPad ')' is not preceded with whitespace. 679
 Error whitespace ParenPad '(' is not followed by whitespace. 681
 Error whitespace ParenPad ')' is not preceded with whitespace. 681
 Error blocks LeftCurly '{' should be on a new line. 681
 Error whitespace ParenPad '(' is not followed by whitespace. 683
 Error whitespace ParenPad ')' is not preceded with whitespace. 683
 Error blocks LeftCurly '{' should be on a new line. 683
 Error whitespace ParenPad '(' is not followed by whitespace. 684
 Error whitespace ParenPad '(' is not followed by whitespace. 684
 Error whitespace ParenPad ')' is not preceded with whitespace. 684
 Error whitespace ParenPad ')' is not preceded with whitespace. 684
 Error whitespace ParenPad '(' is not followed by whitespace. 685
 Error whitespace ParenPad ')' is not preceded with whitespace. 685
 Error blocks LeftCurly '{' should be on a new line. 685
 Error whitespace ParenPad '(' is not followed by whitespace. 686
 Error whitespace ParenPad ')' is not preceded with whitespace. 686
 Error whitespace ParenPad '(' is not followed by whitespace. 692
 Error whitespace ParenPad ')' is not preceded with whitespace. 692
 Error whitespace ParenPad '(' is not followed by whitespace. 695
 Error whitespace ParenPad ')' is not preceded with whitespace. 695
 Error whitespace ParenPad '(' is not followed by whitespace. 697
 Error whitespace ParenPad ')' is not preceded with whitespace. 697
 Error blocks LeftCurly '{' should be on a new line. 697
 Error whitespace ParenPad '(' is not followed by whitespace. 699
 Error whitespace ParenPad ')' is not preceded with whitespace. 699
 Error blocks LeftCurly '{' should be on a new line. 699
 Error whitespace ParenPad '(' is not followed by whitespace. 700
 Error whitespace ParenPad '(' is not followed by whitespace. 700
 Error whitespace ParenPad ')' is not preceded with whitespace. 700
 Error whitespace ParenPad ')' is not preceded with whitespace. 700
 Error whitespace ParenPad '(' is not followed by whitespace. 701
 Error whitespace ParenPad ')' is not preceded with whitespace. 701
 Error blocks LeftCurly '{' should be on a new line. 701
 Error whitespace ParenPad '(' is not followed by whitespace. 702
 Error whitespace ParenPad ')' is not preceded with whitespace. 702
 Error whitespace ParenPad '(' is not followed by whitespace. 708
 Error whitespace ParenPad ')' is not preceded with whitespace. 708
 Error whitespace ParenPad '(' is not followed by whitespace. 713
 Error whitespace ParenPad ')' is not preceded with whitespace. 713
 Error blocks LeftCurly '{' should be on a new line. 713
 Error whitespace ParenPad '(' is not followed by whitespace. 718
 Error whitespace ParenPad ')' is not preceded with whitespace. 718
 Error whitespace ParenPad '(' is not followed by whitespace. 720
 Error whitespace ParenPad ')' is not preceded with whitespace. 720
 Error blocks LeftCurly '{' should be on a new line. 720
 Error whitespace ParenPad '(' is not followed by whitespace. 722
 Error whitespace ParenPad ')' is not preceded with whitespace. 722
 Error blocks LeftCurly '{' should be on a new line. 722
 Error whitespace ParenPad '(' is not followed by whitespace. 723
 Error whitespace ParenPad '(' is not followed by whitespace. 723
 Error whitespace ParenPad ')' is not preceded with whitespace. 723
 Error whitespace ParenPad ')' is not preceded with whitespace. 723
 Error whitespace ParenPad '(' is not followed by whitespace. 724
 Error whitespace ParenPad ')' is not preceded with whitespace. 724
 Error blocks LeftCurly '{' should be on a new line. 724
 Error whitespace ParenPad '(' is not followed by whitespace. 725
 Error whitespace ParenPad ')' is not preceded with whitespace. 725
 Error whitespace ParenPad '(' is not followed by whitespace. 731
 Error whitespace ParenPad ')' is not preceded with whitespace. 731
 Error whitespace ParenPad '(' is not followed by whitespace. 733
 Error whitespace ParenPad '(' is not followed by whitespace. 733
 Error whitespace ParenPad ')' is not preceded with whitespace. 733
 Error whitespace ParenPad ')' is not preceded with whitespace. 733
 Error whitespace ParenPad '(' is not followed by whitespace. 734
 Error whitespace ParenPad '(' is not followed by whitespace. 734
 Error whitespace ParenPad ')' is not preceded with whitespace. 734
 Error whitespace ParenPad ')' is not preceded with whitespace. 734
 Error whitespace ParenPad '(' is not followed by whitespace. 738
 Error whitespace ParenPad ')' is not preceded with whitespace. 738
 Error whitespace ParenPad '(' is not followed by whitespace. 740
 Error whitespace ParenPad ')' is not preceded with whitespace. 740
 Error blocks LeftCurly '{' should be on a new line. 740
 Error whitespace ParenPad '(' is not followed by whitespace. 742
 Error whitespace ParenPad ')' is not preceded with whitespace. 742
 Error blocks LeftCurly '{' should be on a new line. 742
 Error whitespace ParenPad '(' is not followed by whitespace. 743
 Error whitespace ParenPad '(' is not followed by whitespace. 743
 Error whitespace ParenPad ')' is not preceded with whitespace. 743
 Error whitespace ParenPad ')' is not preceded with whitespace. 743
 Error whitespace ParenPad '(' is not followed by whitespace. 744
 Error whitespace ParenPad ')' is not preceded with whitespace. 744
 Error blocks LeftCurly '{' should be on a new line. 744
 Error whitespace ParenPad '(' is not followed by whitespace. 745
 Error whitespace ParenPad ')' is not preceded with whitespace. 745
 Error whitespace ParenPad '(' is not followed by whitespace. 751
 Error whitespace ParenPad ')' is not preceded with whitespace. 751
 Error whitespace ParenPad '(' is not followed by whitespace. 752
 Error whitespace ParenPad ')' is not preceded with whitespace. 752
 Error whitespace ParenPad '(' is not followed by whitespace. 753
 Error whitespace ParenPad ')' is not preceded with whitespace. 753
 Error whitespace ParenPad '(' is not followed by whitespace. 756
 Error whitespace ParenPad ')' is not preceded with whitespace. 756
 Error whitespace ParenPad '(' is not followed by whitespace. 758
 Error whitespace ParenPad ')' is not preceded with whitespace. 758
 Error blocks LeftCurly '{' should be on a new line. 758
 Error whitespace ParenPad '(' is not followed by whitespace. 760
 Error whitespace ParenPad ')' is not preceded with whitespace. 760
 Error blocks LeftCurly '{' should be on a new line. 760
 Error whitespace ParenPad '(' is not followed by whitespace. 761
 Error whitespace ParenPad '(' is not followed by whitespace. 761
 Error whitespace ParenPad ')' is not preceded with whitespace. 761
 Error whitespace ParenPad ')' is not preceded with whitespace. 761
 Error whitespace ParenPad '(' is not followed by whitespace. 762
 Error whitespace ParenPad ')' is not preceded with whitespace. 762
 Error blocks LeftCurly '{' should be on a new line. 762
 Error whitespace ParenPad '(' is not followed by whitespace. 763
 Error whitespace ParenPad ')' is not preceded with whitespace. 763
 Error whitespace ParenPad '(' is not followed by whitespace. 769
 Error whitespace ParenPad ')' is not preceded with whitespace. 769
 Error whitespace ParenPad '(' is not followed by whitespace. 771
 Error whitespace ParenPad '(' is not followed by whitespace. 771
 Error whitespace ParenPad ')' is not preceded with whitespace. 771
 Error whitespace ParenPad ')' is not preceded with whitespace. 771
 Error whitespace ParenPad '(' is not followed by whitespace. 772
 Error whitespace ParenPad ')' is not preceded with whitespace. 772
 Error whitespace ParenPad '(' is not followed by whitespace. 777
 Error whitespace ParenPad ')' is not preceded with whitespace. 777
 Error blocks LeftCurly '{' should be on a new line. 777
 Error whitespace ParenPad '(' is not followed by whitespace. 782
 Error whitespace ParenPad ')' is not preceded with whitespace. 782
 Error whitespace ParenPad '(' is not followed by whitespace. 784
 Error whitespace ParenPad ')' is not preceded with whitespace. 784
 Error blocks LeftCurly '{' should be on a new line. 784
 Error whitespace ParenPad '(' is not followed by whitespace. 786
 Error whitespace ParenPad ')' is not preceded with whitespace. 786
 Error blocks LeftCurly '{' should be on a new line. 786
 Error whitespace ParenPad '(' is not followed by whitespace. 787
 Error whitespace ParenPad '(' is not followed by whitespace. 787
 Error whitespace ParenPad ')' is not preceded with whitespace. 787
 Error whitespace ParenPad ')' is not preceded with whitespace. 787
 Error whitespace ParenPad '(' is not followed by whitespace. 788
 Error whitespace ParenPad ')' is not preceded with whitespace. 788
 Error blocks LeftCurly '{' should be on a new line. 788
 Error whitespace ParenPad '(' is not followed by whitespace. 789
 Error whitespace ParenPad ')' is not preceded with whitespace. 789
 Error whitespace ParenPad '(' is not followed by whitespace. 795
 Error whitespace ParenPad ')' is not preceded with whitespace. 795
 Error whitespace ParenPad '(' is not followed by whitespace. 798
 Error whitespace ParenPad ')' is not preceded with whitespace. 798
 Error whitespace ParenPad '(' is not followed by whitespace. 800
 Error whitespace ParenPad ')' is not preceded with whitespace. 800
 Error blocks LeftCurly '{' should be on a new line. 800
 Error whitespace ParenPad '(' is not followed by whitespace. 802
 Error whitespace ParenPad ')' is not preceded with whitespace. 802
 Error blocks LeftCurly '{' should be on a new line. 802
 Error whitespace ParenPad '(' is not followed by whitespace. 803
 Error whitespace ParenPad '(' is not followed by whitespace. 803
 Error whitespace ParenPad ')' is not preceded with whitespace. 803
 Error whitespace ParenPad ')' is not preceded with whitespace. 803
 Error whitespace ParenPad '(' is not followed by whitespace. 804
 Error whitespace ParenPad ')' is not preceded with whitespace. 804
 Error blocks LeftCurly '{' should be on a new line. 804
 Error whitespace ParenPad '(' is not followed by whitespace. 805
 Error whitespace ParenPad ')' is not preceded with whitespace. 805
 Error whitespace ParenPad '(' is not followed by whitespace. 811
 Error whitespace ParenPad ')' is not preceded with whitespace. 811
 Error sizes LineLength Line is longer than 120 characters (found 133). 816
 Error whitespace ParenPad '(' is not followed by whitespace. 816
 Error whitespace ParenPad ')' is not preceded with whitespace. 816
 Error blocks LeftCurly '{' should be on a new line. 816
 Error whitespace ParenPad '(' is not followed by whitespace. 821
 Error whitespace ParenPad ')' is not preceded with whitespace. 821
 Error whitespace ParenPad '(' is not followed by whitespace. 823
 Error whitespace ParenPad ')' is not preceded with whitespace. 823
 Error blocks LeftCurly '{' should be on a new line. 823
 Error whitespace ParenPad '(' is not followed by whitespace. 825
 Error whitespace ParenPad ')' is not preceded with whitespace. 825
 Error blocks LeftCurly '{' should be on a new line. 825
 Error whitespace ParenPad '(' is not followed by whitespace. 826
 Error whitespace ParenPad '(' is not followed by whitespace. 826
 Error whitespace ParenPad ')' is not preceded with whitespace. 826
 Error whitespace ParenPad ')' is not preceded with whitespace. 826
 Error whitespace ParenPad '(' is not followed by whitespace. 827
 Error whitespace ParenPad ')' is not preceded with whitespace. 827
 Error blocks LeftCurly '{' should be on a new line. 827
 Error whitespace ParenPad '(' is not followed by whitespace. 828
 Error whitespace ParenPad ')' is not preceded with whitespace. 828
 Error whitespace ParenPad '(' is not followed by whitespace. 834
 Error whitespace ParenPad ')' is not preceded with whitespace. 834
 Error whitespace ParenPad '(' is not followed by whitespace. 837
 Error whitespace ParenPad ')' is not preceded with whitespace. 837
 Error whitespace ParenPad '(' is not followed by whitespace. 839
 Error whitespace ParenPad ')' is not preceded with whitespace. 839
 Error blocks LeftCurly '{' should be on a new line. 839
 Error whitespace ParenPad '(' is not followed by whitespace. 841
 Error whitespace ParenPad ')' is not preceded with whitespace. 841
 Error blocks LeftCurly '{' should be on a new line. 841
 Error whitespace ParenPad '(' is not followed by whitespace. 842
 Error whitespace ParenPad '(' is not followed by whitespace. 842
 Error whitespace ParenPad ')' is not preceded with whitespace. 842
 Error whitespace ParenPad ')' is not preceded with whitespace. 842
 Error whitespace ParenPad '(' is not followed by whitespace. 843
 Error whitespace ParenPad ')' is not preceded with whitespace. 843
 Error blocks LeftCurly '{' should be on a new line. 843
 Error whitespace ParenPad '(' is not followed by whitespace. 844
 Error whitespace ParenPad ')' is not preceded with whitespace. 844
 Error whitespace ParenPad '(' is not followed by whitespace. 850
 Error whitespace ParenPad ')' is not preceded with whitespace. 850
 Error whitespace ParenPad '(' is not followed by whitespace. 853
 Error whitespace ParenPad ')' is not preceded with whitespace. 853
 Error whitespace ParenPad '(' is not followed by whitespace. 855
 Error whitespace ParenPad ')' is not preceded with whitespace. 855
 Error blocks LeftCurly '{' should be on a new line. 855
 Error whitespace ParenPad '(' is not followed by whitespace. 857
 Error whitespace ParenPad ')' is not preceded with whitespace. 857
 Error blocks LeftCurly '{' should be on a new line. 857
 Error whitespace ParenPad '(' is not followed by whitespace. 858
 Error whitespace ParenPad '(' is not followed by whitespace. 858
 Error whitespace ParenPad ')' is not preceded with whitespace. 858
 Error whitespace ParenPad ')' is not preceded with whitespace. 858
 Error whitespace ParenPad '(' is not followed by whitespace. 859
 Error whitespace ParenPad ')' is not preceded with whitespace. 859
 Error blocks LeftCurly '{' should be on a new line. 859
 Error whitespace ParenPad '(' is not followed by whitespace. 860
 Error whitespace ParenPad ')' is not preceded with whitespace. 860
 Error whitespace ParenPad '(' is not followed by whitespace. 866
 Error whitespace ParenPad ')' is not preceded with whitespace. 866
 Error whitespace ParenPad '(' is not followed by whitespace. 868
 Error whitespace ParenPad '(' is not followed by whitespace. 868
 Error whitespace ParenPad ')' is not preceded with whitespace. 868
 Error whitespace ParenPad ')' is not preceded with whitespace. 868
 Error whitespace ParenPad '(' is not followed by whitespace. 869
 Error whitespace ParenPad ')' is not preceded with whitespace. 869
 Error whitespace ParenPad '(' is not followed by whitespace. 871
 Error whitespace ParenPad '(' is not followed by whitespace. 871
 Error whitespace ParenPad ')' is not preceded with whitespace. 871
 Error whitespace ParenPad ')' is not preceded with whitespace. 871
 Error whitespace ParenPad '(' is not followed by whitespace. 872
 Error whitespace ParenPad ')' is not preceded with whitespace. 872
 Error whitespace ParenPad '(' is not followed by whitespace. 873
 Error whitespace ParenPad ')' is not preceded with whitespace. 873
 Error whitespace ParenPad '(' is not followed by whitespace. 874
 Error whitespace ParenPad ')' is not preceded with whitespace. 874
 Error whitespace ParenPad '(' is not followed by whitespace. 875
 Error whitespace ParenPad ')' is not preceded with whitespace. 875
 Error whitespace ParenPad '(' is not followed by whitespace. 876
 Error whitespace ParenPad ')' is not preceded with whitespace. 876
 Error whitespace ParenPad '(' is not followed by whitespace. 877
 Error whitespace ParenPad ')' is not preceded with whitespace. 877
 Error whitespace ParenPad '(' is not followed by whitespace. 878
 Error whitespace ParenPad ')' is not preceded with whitespace. 878
 Error whitespace ParenPad '(' is not followed by whitespace. 883
 Error whitespace ParenPad ')' is not preceded with whitespace. 883
 Error blocks LeftCurly '{' should be on a new line. 883
 Error whitespace ParenPad '(' is not followed by whitespace. 888
 Error whitespace ParenPad ')' is not preceded with whitespace. 888
 Error whitespace ParenPad '(' is not followed by whitespace. 890
 Error whitespace ParenPad ')' is not preceded with whitespace. 890
 Error blocks LeftCurly '{' should be on a new line. 890
 Error whitespace ParenPad '(' is not followed by whitespace. 892
 Error whitespace ParenPad ')' is not preceded with whitespace. 892
 Error blocks LeftCurly '{' should be on a new line. 892
 Error whitespace ParenPad '(' is not followed by whitespace. 893
 Error whitespace ParenPad '(' is not followed by whitespace. 893
 Error whitespace ParenPad ')' is not preceded with whitespace. 893
 Error whitespace ParenPad ')' is not preceded with whitespace. 893
 Error whitespace ParenPad '(' is not followed by whitespace. 894
 Error whitespace ParenPad ')' is not preceded with whitespace. 894
 Error blocks LeftCurly '{' should be on a new line. 894
 Error whitespace ParenPad '(' is not followed by whitespace. 895
 Error whitespace ParenPad ')' is not preceded with whitespace. 895
 Error whitespace ParenPad '(' is not followed by whitespace. 901
 Error whitespace ParenPad ')' is not preceded with whitespace. 901
 Error whitespace ParenPad '(' is not followed by whitespace. 904
 Error whitespace ParenPad ')' is not preceded with whitespace. 904
 Error whitespace ParenPad '(' is not followed by whitespace. 906
 Error whitespace ParenPad ')' is not preceded with whitespace. 906
 Error blocks LeftCurly '{' should be on a new line. 906
 Error whitespace ParenPad '(' is not followed by whitespace. 908
 Error whitespace ParenPad ')' is not preceded with whitespace. 908
 Error blocks LeftCurly '{' should be on a new line. 908
 Error whitespace ParenPad '(' is not followed by whitespace. 909
 Error whitespace ParenPad '(' is not followed by whitespace. 909
 Error whitespace ParenPad ')' is not preceded with whitespace. 909
 Error whitespace ParenPad ')' is not preceded with whitespace. 909
 Error whitespace ParenPad '(' is not followed by whitespace. 910
 Error whitespace ParenPad ')' is not preceded with whitespace. 910
 Error blocks LeftCurly '{' should be on a new line. 910
 Error whitespace ParenPad '(' is not followed by whitespace. 911
 Error whitespace ParenPad ')' is not preceded with whitespace. 911
 Error whitespace ParenPad '(' is not followed by whitespace. 917
 Error whitespace ParenPad ')' is not preceded with whitespace. 917
 Error whitespace ParenPad '(' is not followed by whitespace. 919
 Error whitespace ParenPad ')' is not preceded with whitespace. 919
 Error whitespace ParenPad '(' is not followed by whitespace. 920
 Error blocks LeftCurly '{' should be on a new line. 920
 Error whitespace ParenPad '(' is not followed by whitespace. 921
 Error whitespace ParenPad ')' is not preceded with whitespace. 921
 Error whitespace ParenPad '(' is not followed by whitespace. 922
 Error whitespace ParenPad ')' is not preceded with whitespace. 922
 Error whitespace ParenPad '(' is not followed by whitespace. 924
 Error whitespace ParenPad ')' is not preceded with whitespace. 924
 Error whitespace ParenPad '(' is not followed by whitespace. 929
 Error whitespace ParenPad ')' is not preceded with whitespace. 929
 Error blocks LeftCurly '{' should be on a new line. 929
 Error whitespace ParenPad '(' is not followed by whitespace. 932
 Error whitespace ParenPad ')' is not preceded with whitespace. 932
 Error whitespace ParenPad '(' is not followed by whitespace. 933
 Error whitespace ParenPad ')' is not preceded with whitespace. 933
 Error whitespace ParenPad '(' is not followed by whitespace. 936
 Error whitespace ParenPad ')' is not preceded with whitespace. 936
 Error whitespace ParenPad '(' is not followed by whitespace. 938
 Error whitespace ParenPad ')' is not preceded with whitespace. 938
 Error blocks LeftCurly '{' should be on a new line. 938
 Error whitespace ParenPad '(' is not followed by whitespace. 940
 Error whitespace ParenPad ')' is not preceded with whitespace. 940
 Error blocks LeftCurly '{' should be on a new line. 940
 Error whitespace ParenPad '(' is not followed by whitespace. 941
 Error whitespace ParenPad '(' is not followed by whitespace. 941
 Error whitespace ParenPad ')' is not preceded with whitespace. 941
 Error whitespace ParenPad ')' is not preceded with whitespace. 941
 Error whitespace ParenPad '(' is not followed by whitespace. 942
 Error whitespace ParenPad ')' is not preceded with whitespace. 942
 Error blocks LeftCurly '{' should be on a new line. 942
 Error whitespace ParenPad '(' is not followed by whitespace. 943
 Error whitespace ParenPad ')' is not preceded with whitespace. 943
 Error whitespace ParenPad '(' is not followed by whitespace. 949
 Error whitespace ParenPad ')' is not preceded with whitespace. 949
 Error whitespace ParenPad '(' is not followed by whitespace. 952
 Error whitespace ParenPad ')' is not preceded with whitespace. 952
 Error whitespace ParenPad '(' is not followed by whitespace. 954
 Error whitespace ParenPad ')' is not preceded with whitespace. 954
 Error blocks LeftCurly '{' should be on a new line. 954
 Error whitespace ParenPad '(' is not followed by whitespace. 956
 Error whitespace ParenPad ')' is not preceded with whitespace. 956
 Error blocks LeftCurly '{' should be on a new line. 956
 Error whitespace ParenPad '(' is not followed by whitespace. 957
 Error whitespace ParenPad '(' is not followed by whitespace. 957
 Error whitespace ParenPad ')' is not preceded with whitespace. 957
 Error whitespace ParenPad ')' is not preceded with whitespace. 957
 Error whitespace ParenPad '(' is not followed by whitespace. 958
 Error whitespace ParenPad ')' is not preceded with whitespace. 958
 Error blocks LeftCurly '{' should be on a new line. 958
 Error whitespace ParenPad '(' is not followed by whitespace. 959
 Error whitespace ParenPad ')' is not preceded with whitespace. 959
 Error whitespace ParenPad '(' is not followed by whitespace. 965
 Error whitespace ParenPad ')' is not preceded with whitespace. 965
 Error whitespace ParenPad '(' is not followed by whitespace. 968
 Error whitespace ParenPad ')' is not preceded with whitespace. 968
 Error whitespace ParenPad '(' is not followed by whitespace. 970
 Error whitespace ParenPad ')' is not preceded with whitespace. 970
 Error blocks LeftCurly '{' should be on a new line. 970
 Error whitespace ParenPad '(' is not followed by whitespace. 972
 Error whitespace ParenPad ')' is not preceded with whitespace. 972
 Error blocks LeftCurly '{' should be on a new line. 972
 Error whitespace ParenPad '(' is not followed by whitespace. 973
 Error whitespace ParenPad '(' is not followed by whitespace. 973
 Error whitespace ParenPad ')' is not preceded with whitespace. 973
 Error whitespace ParenPad ')' is not preceded with whitespace. 973
 Error whitespace ParenPad '(' is not followed by whitespace. 974
 Error whitespace ParenPad ')' is not preceded with whitespace. 974
 Error blocks LeftCurly '{' should be on a new line. 974
 Error whitespace ParenPad '(' is not followed by whitespace. 975
 Error whitespace ParenPad ')' is not preceded with whitespace. 975
 Error whitespace ParenPad '(' is not followed by whitespace. 981
 Error whitespace ParenPad ')' is not preceded with whitespace. 981
 Error whitespace ParenPad '(' is not followed by whitespace. 983
 Error whitespace ParenPad '(' is not followed by whitespace. 983
 Error whitespace ParenPad ')' is not preceded with whitespace. 983
 Error whitespace ParenPad ')' is not preceded with whitespace. 983
 Error whitespace ParenPad '(' is not followed by whitespace. 984
 Error whitespace ParenPad ')' is not preceded with whitespace. 984
 Error whitespace ParenPad '(' is not followed by whitespace. 986
 Error whitespace ParenPad '(' is not followed by whitespace. 986
 Error whitespace ParenPad ')' is not preceded with whitespace. 986
 Error whitespace ParenPad ')' is not preceded with whitespace. 986
 Error whitespace ParenPad '(' is not followed by whitespace. 987
 Error whitespace ParenPad ')' is not preceded with whitespace. 987
 Error whitespace ParenPad '(' is not followed by whitespace. 988
 Error whitespace ParenPad ')' is not preceded with whitespace. 988
 Error whitespace ParenPad '(' is not followed by whitespace. 989
 Error whitespace ParenPad ')' is not preceded with whitespace. 989
 Error whitespace ParenPad '(' is not followed by whitespace. 990
 Error whitespace ParenPad ')' is not preceded with whitespace. 990
 Error whitespace ParenPad '(' is not followed by whitespace. 991
 Error whitespace ParenPad ')' is not preceded with whitespace. 991
 Error whitespace ParenPad '(' is not followed by whitespace. 992
 Error whitespace ParenPad ')' is not preceded with whitespace. 992
 Error whitespace ParenPad '(' is not followed by whitespace. 993
 Error whitespace ParenPad ')' is not preceded with whitespace. 993
 Error whitespace ParenPad '(' is not followed by whitespace. 998
 Error whitespace ParenPad ')' is not preceded with whitespace. 998
 Error blocks LeftCurly '{' should be on a new line. 998
 Error whitespace ParenPad '(' is not followed by whitespace. 1003
 Error whitespace ParenPad ')' is not preceded with whitespace. 1003
 Error whitespace ParenPad '(' is not followed by whitespace. 1005
 Error whitespace ParenPad ')' is not preceded with whitespace. 1005
 Error blocks LeftCurly '{' should be on a new line. 1005
 Error whitespace ParenPad '(' is not followed by whitespace. 1007
 Error whitespace ParenPad ')' is not preceded with whitespace. 1007
 Error blocks LeftCurly '{' should be on a new line. 1007
 Error whitespace ParenPad '(' is not followed by whitespace. 1008
 Error whitespace ParenPad '(' is not followed by whitespace. 1008
 Error whitespace ParenPad ')' is not preceded with whitespace. 1008
 Error whitespace ParenPad ')' is not preceded with whitespace. 1008
 Error whitespace ParenPad '(' is not followed by whitespace. 1009
 Error whitespace ParenPad ')' is not preceded with whitespace. 1009
 Error blocks LeftCurly '{' should be on a new line. 1009
 Error whitespace ParenPad '(' is not followed by whitespace. 1010
 Error whitespace ParenPad ')' is not preceded with whitespace. 1010
 Error whitespace ParenPad '(' is not followed by whitespace. 1016
 Error whitespace ParenPad ')' is not preceded with whitespace. 1016
 Error whitespace ParenPad '(' is not followed by whitespace. 1019
 Error whitespace ParenPad ')' is not preceded with whitespace. 1019
 Error whitespace ParenPad '(' is not followed by whitespace. 1021
 Error whitespace ParenPad ')' is not preceded with whitespace. 1021
 Error blocks LeftCurly '{' should be on a new line. 1021
 Error whitespace ParenPad '(' is not followed by whitespace. 1023
 Error whitespace ParenPad ')' is not preceded with whitespace. 1023
 Error blocks LeftCurly '{' should be on a new line. 1023
 Error whitespace ParenPad '(' is not followed by whitespace. 1024
 Error whitespace ParenPad '(' is not followed by whitespace. 1024
 Error whitespace ParenPad ')' is not preceded with whitespace. 1024
 Error whitespace ParenPad ')' is not preceded with whitespace. 1024
 Error whitespace ParenPad '(' is not followed by whitespace. 1025
 Error whitespace ParenPad ')' is not preceded with whitespace. 1025
 Error blocks LeftCurly '{' should be on a new line. 1025
 Error whitespace ParenPad '(' is not followed by whitespace. 1026
 Error whitespace ParenPad ')' is not preceded with whitespace. 1026
 Error whitespace ParenPad '(' is not followed by whitespace. 1032
 Error whitespace ParenPad ')' is not preceded with whitespace. 1032
 Error whitespace ParenPad '(' is not followed by whitespace. 1035
 Error whitespace ParenPad ')' is not preceded with whitespace. 1035
 Error whitespace ParenPad '(' is not followed by whitespace. 1037
 Error whitespace ParenPad ')' is not preceded with whitespace. 1037
 Error blocks LeftCurly '{' should be on a new line. 1037
 Error whitespace ParenPad '(' is not followed by whitespace. 1039
 Error whitespace ParenPad ')' is not preceded with whitespace. 1039
 Error blocks LeftCurly '{' should be on a new line. 1039
 Error whitespace ParenPad '(' is not followed by whitespace. 1040
 Error whitespace ParenPad '(' is not followed by whitespace. 1040
 Error whitespace ParenPad ')' is not preceded with whitespace. 1040
 Error whitespace ParenPad ')' is not preceded with whitespace. 1040
 Error whitespace ParenPad '(' is not followed by whitespace. 1041
 Error whitespace ParenPad ')' is not preceded with whitespace. 1041
 Error blocks LeftCurly '{' should be on a new line. 1041
 Error whitespace ParenPad '(' is not followed by whitespace. 1042
 Error whitespace ParenPad ')' is not preceded with whitespace. 1042
 Error whitespace ParenPad '(' is not followed by whitespace. 1048
 Error whitespace ParenPad ')' is not preceded with whitespace. 1048
 Error whitespace ParenPad '(' is not followed by whitespace. 1051
 Error whitespace ParenPad ')' is not preceded with whitespace. 1051
 Error whitespace ParenPad '(' is not followed by whitespace. 1053
 Error whitespace ParenPad ')' is not preceded with whitespace. 1053
 Error blocks LeftCurly '{' should be on a new line. 1053
 Error whitespace ParenPad '(' is not followed by whitespace. 1055
 Error whitespace ParenPad ')' is not preceded with whitespace. 1055
 Error blocks LeftCurly '{' should be on a new line. 1055
 Error whitespace ParenPad '(' is not followed by whitespace. 1056
 Error whitespace ParenPad '(' is not followed by whitespace. 1056
 Error whitespace ParenPad ')' is not preceded with whitespace. 1056
 Error whitespace ParenPad ')' is not preceded with whitespace. 1056
 Error whitespace ParenPad '(' is not followed by whitespace. 1057
 Error whitespace ParenPad ')' is not preceded with whitespace. 1057
 Error blocks LeftCurly '{' should be on a new line. 1057
 Error whitespace ParenPad '(' is not followed by whitespace. 1058
 Error whitespace ParenPad ')' is not preceded with whitespace. 1058
 Error whitespace ParenPad '(' is not followed by whitespace. 1064
 Error whitespace ParenPad ')' is not preceded with whitespace. 1064
 Error whitespace ParenPad '(' is not followed by whitespace. 1067
 Error whitespace ParenPad ')' is not preceded with whitespace. 1067
 Error whitespace ParenPad '(' is not followed by whitespace. 1069
 Error whitespace ParenPad ')' is not preceded with whitespace. 1069
 Error blocks LeftCurly '{' should be on a new line. 1069
 Error whitespace ParenPad '(' is not followed by whitespace. 1071
 Error whitespace ParenPad ')' is not preceded with whitespace. 1071
 Error blocks LeftCurly '{' should be on a new line. 1071
 Error whitespace ParenPad '(' is not followed by whitespace. 1072
 Error whitespace ParenPad '(' is not followed by whitespace. 1072
 Error whitespace ParenPad ')' is not preceded with whitespace. 1072
 Error whitespace ParenPad ')' is not preceded with whitespace. 1072
 Error whitespace ParenPad '(' is not followed by whitespace. 1073
 Error whitespace ParenPad ')' is not preceded with whitespace. 1073
 Error blocks LeftCurly '{' should be on a new line. 1073
 Error whitespace ParenPad '(' is not followed by whitespace. 1074
 Error whitespace ParenPad ')' is not preceded with whitespace. 1074
 Error whitespace ParenPad '(' is not followed by whitespace. 1080
 Error whitespace ParenPad ')' is not preceded with whitespace. 1080
 Error whitespace ParenPad '(' is not followed by whitespace. 1082
 Error whitespace ParenPad '(' is not followed by whitespace. 1082
 Error whitespace ParenPad ')' is not preceded with whitespace. 1082
 Error whitespace ParenPad ')' is not preceded with whitespace. 1082
 Error whitespace ParenPad '(' is not followed by whitespace. 1083
 Error whitespace ParenPad ')' is not preceded with whitespace. 1083
 Error whitespace ParenPad '(' is not followed by whitespace. 1085
 Error whitespace ParenPad '(' is not followed by whitespace. 1085
 Error whitespace ParenPad ')' is not preceded with whitespace. 1085
 Error whitespace ParenPad ')' is not preceded with whitespace. 1085
 Error whitespace ParenPad '(' is not followed by whitespace. 1086
 Error whitespace ParenPad ')' is not preceded with whitespace. 1086
 Error whitespace ParenPad '(' is not followed by whitespace. 1087
 Error whitespace ParenPad ')' is not preceded with whitespace. 1087
 Error whitespace ParenPad '(' is not followed by whitespace. 1088
 Error whitespace ParenPad ')' is not preceded with whitespace. 1088
 Error whitespace ParenPad '(' is not followed by whitespace. 1089
 Error whitespace ParenPad ')' is not preceded with whitespace. 1089
 Error whitespace ParenPad '(' is not followed by whitespace. 1090
 Error whitespace ParenPad ')' is not preceded with whitespace. 1090
 Error whitespace ParenPad '(' is not followed by whitespace. 1091
 Error whitespace ParenPad ')' is not preceded with whitespace. 1091
 Error whitespace ParenPad '(' is not followed by whitespace. 1092
 Error whitespace ParenPad ')' is not preceded with whitespace. 1092
 Error whitespace ParenPad '(' is not followed by whitespace. 1097
 Error whitespace ParenPad ')' is not preceded with whitespace. 1097
 Error blocks LeftCurly '{' should be on a new line. 1097
 Error whitespace ParenPad '(' is not followed by whitespace. 1102
 Error whitespace ParenPad ')' is not preceded with whitespace. 1102
 Error whitespace ParenPad '(' is not followed by whitespace. 1104
 Error whitespace ParenPad ')' is not preceded with whitespace. 1104
 Error blocks LeftCurly '{' should be on a new line. 1104
 Error whitespace ParenPad '(' is not followed by whitespace. 1106
 Error whitespace ParenPad ')' is not preceded with whitespace. 1106
 Error blocks LeftCurly '{' should be on a new line. 1106
 Error whitespace ParenPad '(' is not followed by whitespace. 1107
 Error whitespace ParenPad '(' is not followed by whitespace. 1107
 Error whitespace ParenPad ')' is not preceded with whitespace. 1107
 Error whitespace ParenPad ')' is not preceded with whitespace. 1107
 Error whitespace ParenPad '(' is not followed by whitespace. 1108
 Error whitespace ParenPad ')' is not preceded with whitespace. 1108
 Error blocks LeftCurly '{' should be on a new line. 1108
 Error whitespace ParenPad '(' is not followed by whitespace. 1109
 Error whitespace ParenPad ')' is not preceded with whitespace. 1109
 Error whitespace ParenPad '(' is not followed by whitespace. 1115
 Error whitespace ParenPad ')' is not preceded with whitespace. 1115
 Error whitespace ParenPad '(' is not followed by whitespace. 1118
 Error whitespace ParenPad ')' is not preceded with whitespace. 1118
 Error whitespace ParenPad '(' is not followed by whitespace. 1120
 Error whitespace ParenPad ')' is not preceded with whitespace. 1120
 Error blocks LeftCurly '{' should be on a new line. 1120
 Error whitespace ParenPad '(' is not followed by whitespace. 1122
 Error whitespace ParenPad ')' is not preceded with whitespace. 1122
 Error blocks LeftCurly '{' should be on a new line. 1122
 Error whitespace ParenPad '(' is not followed by whitespace. 1123
 Error whitespace ParenPad '(' is not followed by whitespace. 1123
 Error whitespace ParenPad ')' is not preceded with whitespace. 1123
 Error whitespace ParenPad ')' is not preceded with whitespace. 1123
 Error whitespace ParenPad '(' is not followed by whitespace. 1124
 Error whitespace ParenPad ')' is not preceded with whitespace. 1124
 Error blocks LeftCurly '{' should be on a new line. 1124
 Error whitespace ParenPad '(' is not followed by whitespace. 1125
 Error whitespace ParenPad ')' is not preceded with whitespace. 1125
 Error whitespace ParenPad '(' is not followed by whitespace. 1131
 Error whitespace ParenPad ')' is not preceded with whitespace. 1131
 Error whitespace ParenPad '(' is not followed by whitespace. 1134
 Error whitespace ParenPad ')' is not preceded with whitespace. 1134
 Error whitespace ParenPad '(' is not followed by whitespace. 1136
 Error whitespace ParenPad ')' is not preceded with whitespace. 1136
 Error blocks LeftCurly '{' should be on a new line. 1136
 Error whitespace ParenPad '(' is not followed by whitespace. 1138
 Error whitespace ParenPad ')' is not preceded with whitespace. 1138
 Error blocks LeftCurly '{' should be on a new line. 1138
 Error whitespace ParenPad '(' is not followed by whitespace. 1139
 Error whitespace ParenPad '(' is not followed by whitespace. 1139
 Error whitespace ParenPad ')' is not preceded with whitespace. 1139
 Error whitespace ParenPad ')' is not preceded with whitespace. 1139
 Error whitespace ParenPad '(' is not followed by whitespace. 1140
 Error whitespace ParenPad ')' is not preceded with whitespace. 1140
 Error blocks LeftCurly '{' should be on a new line. 1140
 Error whitespace ParenPad '(' is not followed by whitespace. 1141
 Error whitespace ParenPad ')' is not preceded with whitespace. 1141
 Error whitespace ParenPad '(' is not followed by whitespace. 1147
 Error whitespace ParenPad ')' is not preceded with whitespace. 1147
 Error whitespace ParenPad '(' is not followed by whitespace. 1148
 Error whitespace ParenPad ')' is not preceded with whitespace. 1148
 Error whitespace ParenPad '(' is not followed by whitespace. 1149
 Error whitespace ParenPad ')' is not preceded with whitespace. 1149
 Error whitespace ParenPad '(' is not followed by whitespace. 1152
 Error whitespace ParenPad ')' is not preceded with whitespace. 1152
 Error whitespace ParenPad '(' is not followed by whitespace. 1154
 Error whitespace ParenPad ')' is not preceded with whitespace. 1154
 Error blocks LeftCurly '{' should be on a new line. 1154
 Error whitespace ParenPad '(' is not followed by whitespace. 1156
 Error whitespace ParenPad ')' is not preceded with whitespace. 1156
 Error blocks LeftCurly '{' should be on a new line. 1156
 Error whitespace ParenPad '(' is not followed by whitespace. 1157
 Error whitespace ParenPad '(' is not followed by whitespace. 1157
 Error whitespace ParenPad ')' is not preceded with whitespace. 1157
 Error whitespace ParenPad ')' is not preceded with whitespace. 1157
 Error whitespace ParenPad '(' is not followed by whitespace. 1158
 Error whitespace ParenPad ')' is not preceded with whitespace. 1158
 Error blocks LeftCurly '{' should be on a new line. 1158
 Error whitespace ParenPad '(' is not followed by whitespace. 1159
 Error whitespace ParenPad ')' is not preceded with whitespace. 1159
 Error whitespace ParenPad '(' is not followed by whitespace. 1165
 Error whitespace ParenPad ')' is not preceded with whitespace. 1165
 Error whitespace ParenPad '(' is not followed by whitespace. 1168
 Error whitespace ParenPad ')' is not preceded with whitespace. 1168
 Error whitespace ParenPad '(' is not followed by whitespace. 1170
 Error whitespace ParenPad ')' is not preceded with whitespace. 1170
 Error blocks LeftCurly '{' should be on a new line. 1170
 Error whitespace ParenPad '(' is not followed by whitespace. 1172
 Error whitespace ParenPad ')' is not preceded with whitespace. 1172
 Error blocks LeftCurly '{' should be on a new line. 1172
 Error whitespace ParenPad '(' is not followed by whitespace. 1173
 Error whitespace ParenPad '(' is not followed by whitespace. 1173
 Error whitespace ParenPad ')' is not preceded with whitespace. 1173
 Error whitespace ParenPad ')' is not preceded with whitespace. 1173
 Error whitespace ParenPad '(' is not followed by whitespace. 1174
 Error whitespace ParenPad ')' is not preceded with whitespace. 1174
 Error blocks LeftCurly '{' should be on a new line. 1174
 Error whitespace ParenPad '(' is not followed by whitespace. 1175
 Error whitespace ParenPad ')' is not preceded with whitespace. 1175
 Error whitespace ParenPad '(' is not followed by whitespace. 1181
 Error whitespace ParenPad ')' is not preceded with whitespace. 1181
 Error whitespace ParenPad '(' is not followed by whitespace. 1182
 Error whitespace ParenPad ')' is not preceded with whitespace. 1182
 Error whitespace ParenPad '(' is not followed by whitespace. 1183
 Error whitespace ParenPad ')' is not preceded with whitespace. 1183
 Error whitespace ParenPad '(' is not followed by whitespace. 1188
 Error whitespace ParenPad ')' is not preceded with whitespace. 1188
 Error blocks LeftCurly '{' should be on a new line. 1188
 Error whitespace ParenPad '(' is not followed by whitespace. 1192
 Error whitespace ParenPad ')' is not preceded with whitespace. 1192
 Error whitespace ParenPad '(' is not followed by whitespace. 1193
 Error blocks LeftCurly '{' should be on a new line. 1193
 Error whitespace ParenPad '(' is not followed by whitespace. 1194
 Error whitespace ParenPad ')' is not preceded with whitespace. 1194
 Error whitespace ParenPad '(' is not followed by whitespace. 1195
 Error whitespace ParenPad ')' is not preceded with whitespace. 1195
 Error whitespace ParenPad '(' is not followed by whitespace. 1197
 Error whitespace ParenPad ')' is not preceded with whitespace. 1197
 Error whitespace ParenPad '(' is not followed by whitespace. 1199
 Error whitespace ParenPad '(' is not followed by whitespace. 1199
 Error whitespace ParenPad ')' is not preceded with whitespace. 1199
 Error whitespace ParenPad ')' is not preceded with whitespace. 1199
 Error whitespace ParenPad '(' is not followed by whitespace. 1200
 Error whitespace ParenPad ')' is not preceded with whitespace. 1200
 Error whitespace ParenPad '(' is not followed by whitespace. 1202
 Error whitespace ParenPad '(' is not followed by whitespace. 1202
 Error whitespace ParenPad ')' is not preceded with whitespace. 1202
 Error whitespace ParenPad ')' is not preceded with whitespace. 1202
 Error whitespace ParenPad '(' is not followed by whitespace. 1203
 Error whitespace ParenPad ')' is not preceded with whitespace. 1203
 Error whitespace ParenPad '(' is not followed by whitespace. 1208
 Error whitespace ParenPad ')' is not preceded with whitespace. 1208
 Error blocks LeftCurly '{' should be on a new line. 1208
 Error whitespace ParenPad '(' is not followed by whitespace. 1213
 Error whitespace ParenPad ')' is not preceded with whitespace. 1213
 Error whitespace ParenPad '(' is not followed by whitespace. 1215
 Error whitespace ParenPad ')' is not preceded with whitespace. 1215
 Error blocks LeftCurly '{' should be on a new line. 1215
 Error whitespace ParenPad '(' is not followed by whitespace. 1217
 Error whitespace ParenPad ')' is not preceded with whitespace. 1217
 Error blocks LeftCurly '{' should be on a new line. 1217
 Error whitespace ParenPad '(' is not followed by whitespace. 1218
 Error whitespace ParenPad '(' is not followed by whitespace. 1218
 Error whitespace ParenPad ')' is not preceded with whitespace. 1218
 Error whitespace ParenPad ')' is not preceded with whitespace. 1218
 Error whitespace ParenPad '(' is not followed by whitespace. 1219
 Error whitespace ParenPad ')' is not preceded with whitespace. 1219
 Error blocks LeftCurly '{' should be on a new line. 1219
 Error whitespace ParenPad '(' is not followed by whitespace. 1220
 Error whitespace ParenPad ')' is not preceded with whitespace. 1220
 Error whitespace ParenPad '(' is not followed by whitespace. 1226
 Error whitespace ParenPad ')' is not preceded with whitespace. 1226
 Error whitespace ParenPad '(' is not followed by whitespace. 1228
 Error whitespace ParenPad '(' is not followed by whitespace. 1228
 Error whitespace ParenPad ')' is not preceded with whitespace. 1228
 Error whitespace ParenPad ')' is not preceded with whitespace. 1228
 Error whitespace ParenPad '(' is not followed by whitespace. 1229
 Error whitespace ParenPad ')' is not preceded with whitespace. 1229
 Error whitespace ParenPad '(' is not followed by whitespace. 1234
 Error whitespace ParenPad ')' is not preceded with whitespace. 1234
 Error blocks LeftCurly '{' should be on a new line. 1234
 Error whitespace ParenPad '(' is not followed by whitespace. 1239
 Error whitespace ParenPad ')' is not preceded with whitespace. 1239
 Error whitespace ParenPad '(' is not followed by whitespace. 1241
 Error whitespace ParenPad ')' is not preceded with whitespace. 1241
 Error blocks LeftCurly '{' should be on a new line. 1241
 Error whitespace ParenPad '(' is not followed by whitespace. 1243
 Error whitespace ParenPad ')' is not preceded with whitespace. 1243
 Error blocks LeftCurly '{' should be on a new line. 1243
 Error whitespace ParenPad '(' is not followed by whitespace. 1244
 Error whitespace ParenPad '(' is not followed by whitespace. 1244
 Error whitespace ParenPad ')' is not preceded with whitespace. 1244
 Error whitespace ParenPad ')' is not preceded with whitespace. 1244
 Error whitespace ParenPad '(' is not followed by whitespace. 1245
 Error whitespace ParenPad ')' is not preceded with whitespace. 1245
 Error blocks LeftCurly '{' should be on a new line. 1245
 Error whitespace ParenPad '(' is not followed by whitespace. 1246
 Error whitespace ParenPad ')' is not preceded with whitespace. 1246
 Error whitespace ParenPad '(' is not followed by whitespace. 1252
 Error whitespace ParenPad ')' is not preceded with whitespace. 1252
 Error whitespace ParenPad '(' is not followed by whitespace. 1255
 Error whitespace ParenPad ')' is not preceded with whitespace. 1255
 Error whitespace ParenPad '(' is not followed by whitespace. 1257
 Error whitespace ParenPad ')' is not preceded with whitespace. 1257
 Error blocks LeftCurly '{' should be on a new line. 1257
 Error whitespace ParenPad '(' is not followed by whitespace. 1259
 Error whitespace ParenPad ')' is not preceded with whitespace. 1259
 Error blocks LeftCurly '{' should be on a new line. 1259
 Error whitespace ParenPad '(' is not followed by whitespace. 1260
 Error whitespace ParenPad '(' is not followed by whitespace. 1260
 Error whitespace ParenPad ')' is not preceded with whitespace. 1260
 Error whitespace ParenPad ')' is not preceded with whitespace. 1260
 Error whitespace ParenPad '(' is not followed by whitespace. 1261
 Error whitespace ParenPad ')' is not preceded with whitespace. 1261
 Error blocks LeftCurly '{' should be on a new line. 1261
 Error whitespace ParenPad '(' is not followed by whitespace. 1262
 Error whitespace ParenPad ')' is not preceded with whitespace. 1262
 Error whitespace ParenPad '(' is not followed by whitespace. 1268
 Error whitespace ParenPad ')' is not preceded with whitespace. 1268
 Error whitespace ParenPad '(' is not followed by whitespace. 1271
 Error whitespace ParenPad ')' is not preceded with whitespace. 1271
 Error whitespace ParenPad '(' is not followed by whitespace. 1273
 Error whitespace ParenPad ')' is not preceded with whitespace. 1273
 Error blocks LeftCurly '{' should be on a new line. 1273
 Error whitespace ParenPad '(' is not followed by whitespace. 1275
 Error whitespace ParenPad ')' is not preceded with whitespace. 1275
 Error blocks LeftCurly '{' should be on a new line. 1275
 Error whitespace ParenPad '(' is not followed by whitespace. 1276
 Error whitespace ParenPad '(' is not followed by whitespace. 1276
 Error whitespace ParenPad ')' is not preceded with whitespace. 1276
 Error whitespace ParenPad ')' is not preceded with whitespace. 1276
 Error whitespace ParenPad '(' is not followed by whitespace. 1277
 Error whitespace ParenPad ')' is not preceded with whitespace. 1277
 Error blocks LeftCurly '{' should be on a new line. 1277
 Error whitespace ParenPad '(' is not followed by whitespace. 1278
 Error whitespace ParenPad ')' is not preceded with whitespace. 1278
 Error whitespace ParenPad '(' is not followed by whitespace. 1284
 Error whitespace ParenPad ')' is not preceded with whitespace. 1284
 Error whitespace ParenPad '(' is not followed by whitespace. 1289
 Error whitespace ParenPad ')' is not preceded with whitespace. 1289
 Error blocks LeftCurly '{' should be on a new line. 1289
 Error whitespace ParenPad '(' is not followed by whitespace. 1292
 Error whitespace ParenPad ')' is not preceded with whitespace. 1292
 Error whitespace ParenPad '(' is not followed by whitespace. 1293
 Error whitespace ParenPad ')' is not preceded with whitespace. 1293
 Error whitespace ParenPad '(' is not followed by whitespace. 1298
 Error whitespace ParenPad ')' is not preceded with whitespace. 1298
 Error blocks LeftCurly '{' should be on a new line. 1298
 Error whitespace ParenPad '(' is not followed by whitespace. 1301
 Error whitespace ParenPad ')' is not preceded with whitespace. 1301
 Error whitespace ParenPad '(' is not followed by whitespace. 1302
 Error whitespace ParenPad ')' is not preceded with whitespace. 1302
 Error whitespace ParenPad '(' is not followed by whitespace. 1303
 Error whitespace ParenPad ')' is not preceded with whitespace. 1303
 Error whitespace ParenPad '(' is not followed by whitespace. 1304
 Error whitespace ParenPad ')' is not preceded with whitespace. 1304
 Error whitespace ParenPad '(' is not followed by whitespace. 1305
 Error whitespace ParenPad ')' is not preceded with whitespace. 1305
 Error whitespace ParenPad '(' is not followed by whitespace. 1306
 Error whitespace ParenPad ')' is not preceded with whitespace. 1306
 Error whitespace ParenPad '(' is not followed by whitespace. 1309
 Error whitespace ParenPad ')' is not preceded with whitespace. 1309
 Error whitespace ParenPad '(' is not followed by whitespace. 1311
 Error whitespace ParenPad ')' is not preceded with whitespace. 1311
 Error blocks LeftCurly '{' should be on a new line. 1311
 Error whitespace ParenPad '(' is not followed by whitespace. 1313
 Error whitespace ParenPad ')' is not preceded with whitespace. 1313
 Error blocks LeftCurly '{' should be on a new line. 1313
 Error whitespace ParenPad '(' is not followed by whitespace. 1314
 Error whitespace ParenPad '(' is not followed by whitespace. 1314
 Error whitespace ParenPad ')' is not preceded with whitespace. 1314
 Error whitespace ParenPad ')' is not preceded with whitespace. 1314
 Error whitespace ParenPad '(' is not followed by whitespace. 1315
 Error whitespace ParenPad ')' is not preceded with whitespace. 1315
 Error blocks LeftCurly '{' should be on a new line. 1315
 Error whitespace ParenPad '(' is not followed by whitespace. 1316
 Error whitespace ParenPad ')' is not preceded with whitespace. 1316
 Error whitespace ParenPad '(' is not followed by whitespace. 1322
 Error whitespace ParenPad ')' is not preceded with whitespace. 1322
 Error sizes LineLength Line is longer than 120 characters (found 121). 1323
 Error whitespace ParenPad '(' is not followed by whitespace. 1323
 Error whitespace ParenPad ')' is not preceded with whitespace. 1323
 Error whitespace ParenPad '(' is not followed by whitespace. 1324
 Error whitespace ParenPad ')' is not preceded with whitespace. 1324
 Error whitespace ParenPad '(' is not followed by whitespace. 1329
 Error whitespace ParenPad ')' is not preceded with whitespace. 1329
 Error blocks LeftCurly '{' should be on a new line. 1329
 Error whitespace ParenPad '(' is not followed by whitespace. 1332
 Error whitespace ParenPad ')' is not preceded with whitespace. 1332
 Error whitespace ParenPad '(' is not followed by whitespace. 1333
 Error whitespace ParenPad ')' is not preceded with whitespace. 1333
 Error whitespace ParenPad '(' is not followed by whitespace. 1334
 Error whitespace ParenPad ')' is not preceded with whitespace. 1334
 Error whitespace ParenPad '(' is not followed by whitespace. 1335
 Error whitespace ParenPad ')' is not preceded with whitespace. 1335
 Error whitespace ParenPad '(' is not followed by whitespace. 1336
 Error whitespace ParenPad ')' is not preceded with whitespace. 1336
 Error whitespace ParenPad '(' is not followed by whitespace. 1337
 Error whitespace ParenPad ')' is not preceded with whitespace. 1337
 Error whitespace ParenPad '(' is not followed by whitespace. 1342
 Error whitespace ParenPad ')' is not preceded with whitespace. 1342
 Error blocks LeftCurly '{' should be on a new line. 1342
 Error sizes LineLength Line is longer than 120 characters (found 133). 1345
 Error whitespace ParenPad '(' is not followed by whitespace. 1345
 Error whitespace ParenPad ')' is not preceded with whitespace. 1345
 Error whitespace ParenPad '(' is not followed by whitespace. 1346
 Error whitespace ParenPad ')' is not preceded with whitespace. 1346
 Error sizes LineLength Line is longer than 120 characters (found 125). 1347
 Error whitespace ParenPad '(' is not followed by whitespace. 1347
 Error whitespace ParenPad ')' is not preceded with whitespace. 1347
 Error whitespace ParenPad '(' is not followed by whitespace. 1348
 Error whitespace ParenPad ')' is not preceded with whitespace. 1348
 Error whitespace ParenPad '(' is not followed by whitespace. 1351
 Error whitespace ParenPad ')' is not preceded with whitespace. 1351
 Error whitespace ParenPad '(' is not followed by whitespace. 1353
 Error whitespace ParenPad ')' is not preceded with whitespace. 1353
 Error blocks LeftCurly '{' should be on a new line. 1353
 Error whitespace ParenPad '(' is not followed by whitespace. 1355
 Error whitespace ParenPad ')' is not preceded with whitespace. 1355
 Error blocks LeftCurly '{' should be on a new line. 1355
 Error whitespace ParenPad '(' is not followed by whitespace. 1356
 Error whitespace ParenPad '(' is not followed by whitespace. 1356
 Error whitespace ParenPad ')' is not preceded with whitespace. 1356
 Error whitespace ParenPad ')' is not preceded with whitespace. 1356
 Error whitespace ParenPad '(' is not followed by whitespace. 1357
 Error whitespace ParenPad ')' is not preceded with whitespace. 1357
 Error blocks LeftCurly '{' should be on a new line. 1357
 Error whitespace ParenPad '(' is not followed by whitespace. 1358
 Error whitespace ParenPad ')' is not preceded with whitespace. 1358
 Error whitespace ParenPad '(' is not followed by whitespace. 1364
 Error whitespace ParenPad ')' is not preceded with whitespace. 1364
 Error sizes LineLength Line is longer than 120 characters (found 136). 1365
 Error whitespace ParenPad '(' is not followed by whitespace. 1367
 Error whitespace ParenPad ')' is not preceded with whitespace. 1367
 Error whitespace ParenPad '(' is not followed by whitespace. 1369
 Error whitespace ParenPad ')' is not preceded with whitespace. 1369
 Error blocks LeftCurly '{' should be on a new line. 1369
 Error whitespace ParenPad '(' is not followed by whitespace. 1371
 Error whitespace ParenPad ')' is not preceded with whitespace. 1371
 Error blocks LeftCurly '{' should be on a new line. 1371
 Error whitespace ParenPad '(' is not followed by whitespace. 1372
 Error whitespace ParenPad '(' is not followed by whitespace. 1372
 Error whitespace ParenPad ')' is not preceded with whitespace. 1372
 Error whitespace ParenPad ')' is not preceded with whitespace. 1372
 Error whitespace ParenPad '(' is not followed by whitespace. 1373
 Error whitespace ParenPad ')' is not preceded with whitespace. 1373
 Error blocks LeftCurly '{' should be on a new line. 1373
 Error whitespace ParenPad '(' is not followed by whitespace. 1374
 Error whitespace ParenPad ')' is not preceded with whitespace. 1374
 Error whitespace ParenPad '(' is not followed by whitespace. 1380
 Error whitespace ParenPad ')' is not preceded with whitespace. 1380
 Error sizes LineLength Line is longer than 120 characters (found 154). 1381
 Error whitespace ParenPad '(' is not followed by whitespace. 1383
 Error whitespace ParenPad ')' is not preceded with whitespace. 1383
 Error whitespace ParenPad '(' is not followed by whitespace. 1385
 Error whitespace ParenPad ')' is not preceded with whitespace. 1385
 Error blocks LeftCurly '{' should be on a new line. 1385
 Error whitespace ParenPad '(' is not followed by whitespace. 1387
 Error whitespace ParenPad ')' is not preceded with whitespace. 1387
 Error blocks LeftCurly '{' should be on a new line. 1387
 Error whitespace ParenPad '(' is not followed by whitespace. 1388
 Error whitespace ParenPad '(' is not followed by whitespace. 1388
 Error whitespace ParenPad ')' is not preceded with whitespace. 1388
 Error whitespace ParenPad ')' is not preceded with whitespace. 1388
 Error whitespace ParenPad '(' is not followed by whitespace. 1389
 Error whitespace ParenPad ')' is not preceded with whitespace. 1389
 Error blocks LeftCurly '{' should be on a new line. 1389
 Error whitespace ParenPad '(' is not followed by whitespace. 1390
 Error whitespace ParenPad ')' is not preceded with whitespace. 1390
 Error whitespace ParenPad '(' is not followed by whitespace. 1396
 Error whitespace ParenPad ')' is not preceded with whitespace. 1396
 Error whitespace ParenPad '(' is not followed by whitespace. 1400
 Error whitespace ParenPad ')' is not preceded with whitespace. 1400
 Error whitespace ParenPad '(' is not followed by whitespace. 1402
 Error whitespace ParenPad ')' is not preceded with whitespace. 1402
 Error blocks LeftCurly '{' should be on a new line. 1402
 Error whitespace ParenPad '(' is not followed by whitespace. 1404
 Error whitespace ParenPad ')' is not preceded with whitespace. 1404
 Error blocks LeftCurly '{' should be on a new line. 1404
 Error whitespace ParenPad '(' is not followed by whitespace. 1405
 Error whitespace ParenPad '(' is not followed by whitespace. 1405
 Error whitespace ParenPad ')' is not preceded with whitespace. 1405
 Error whitespace ParenPad ')' is not preceded with whitespace. 1405
 Error whitespace ParenPad '(' is not followed by whitespace. 1406
 Error whitespace ParenPad ')' is not preceded with whitespace. 1406
 Error blocks LeftCurly '{' should be on a new line. 1406
 Error whitespace ParenPad '(' is not followed by whitespace. 1407
 Error whitespace ParenPad ')' is not preceded with whitespace. 1407
 Error whitespace ParenPad '(' is not followed by whitespace. 1413
 Error whitespace ParenPad ')' is not preceded with whitespace. 1413
 Error whitespace ParenPad '(' is not followed by whitespace. 1415
 Error whitespace ParenPad ')' is not preceded with whitespace. 1415
 Error whitespace ParenPad '(' is not followed by whitespace. 1417
 Error whitespace ParenPad ')' is not preceded with whitespace. 1417
 Error blocks LeftCurly '{' should be on a new line. 1417
 Error whitespace ParenPad '(' is not followed by whitespace. 1419
 Error whitespace ParenPad ')' is not preceded with whitespace. 1419
 Error blocks LeftCurly '{' should be on a new line. 1419
 Error whitespace ParenPad '(' is not followed by whitespace. 1420
 Error whitespace ParenPad '(' is not followed by whitespace. 1420
 Error whitespace ParenPad ')' is not preceded with whitespace. 1420
 Error whitespace ParenPad ')' is not preceded with whitespace. 1420
 Error whitespace ParenPad '(' is not followed by whitespace. 1421
 Error whitespace ParenPad ')' is not preceded with whitespace. 1421
 Error blocks LeftCurly '{' should be on a new line. 1421
 Error whitespace ParenPad '(' is not followed by whitespace. 1422
 Error whitespace ParenPad ')' is not preceded with whitespace. 1422
 Error whitespace ParenPad '(' is not followed by whitespace. 1428
 Error whitespace ParenPad ')' is not preceded with whitespace. 1428
 Error whitespace ParenPad '(' is not followed by whitespace. 1431
 Error whitespace ParenPad ')' is not preceded with whitespace. 1431
 Error whitespace ParenPad '(' is not followed by whitespace. 1433
 Error whitespace ParenPad ')' is not preceded with whitespace. 1433
 Error blocks LeftCurly '{' should be on a new line. 1433
 Error whitespace ParenPad '(' is not followed by whitespace. 1435
 Error whitespace ParenPad ')' is not preceded with whitespace. 1435
 Error blocks LeftCurly '{' should be on a new line. 1435
 Error whitespace ParenPad '(' is not followed by whitespace. 1436
 Error whitespace ParenPad '(' is not followed by whitespace. 1436
 Error whitespace ParenPad ')' is not preceded with whitespace. 1436
 Error whitespace ParenPad ')' is not preceded with whitespace. 1436
 Error whitespace ParenPad '(' is not followed by whitespace. 1437
 Error whitespace ParenPad ')' is not preceded with whitespace. 1437
 Error blocks LeftCurly '{' should be on a new line. 1437
 Error whitespace ParenPad '(' is not followed by whitespace. 1438
 Error whitespace ParenPad ')' is not preceded with whitespace. 1438
 Error whitespace ParenPad '(' is not followed by whitespace. 1444
 Error whitespace ParenPad ')' is not preceded with whitespace. 1444
 Error whitespace ParenPad '(' is not followed by whitespace. 1446
 Error whitespace ParenPad ')' is not preceded with whitespace. 1446
 Error whitespace ParenPad '(' is not followed by whitespace. 1447
 Error whitespace ParenPad ')' is not preceded with whitespace. 1447
 Error whitespace ParenPad '(' is not followed by whitespace. 1452
 Error whitespace ParenPad ')' is not preceded with whitespace. 1452
 Error blocks LeftCurly '{' should be on a new line. 1452
 Error sizes LineLength Line is longer than 120 characters (found 160). 1455
 Error whitespace ParenPad '(' is not followed by whitespace. 1455
 Error whitespace ParenPad ')' is not preceded with whitespace. 1455
 Error whitespace ParenPad '(' is not followed by whitespace. 1456
 Error whitespace ParenPad ')' is not preceded with whitespace. 1456
 Error whitespace ParenPad '(' is not followed by whitespace. 1458
 Error whitespace ParenPad '(' is not followed by whitespace. 1458
 Error whitespace ParenPad ')' is not preceded with whitespace. 1458
 Error whitespace ParenPad ')' is not preceded with whitespace. 1458
 Error whitespace ParenPad '(' is not followed by whitespace. 1459
 Error whitespace ParenPad ')' is not preceded with whitespace. 1459
 Error whitespace ParenPad '(' is not followed by whitespace. 1461
 Error whitespace ParenPad '(' is not followed by whitespace. 1461
 Error whitespace ParenPad ')' is not preceded with whitespace. 1461
 Error whitespace ParenPad ')' is not preceded with whitespace. 1461
 Error whitespace ParenPad '(' is not followed by whitespace. 1462
 Error whitespace ParenPad ')' is not preceded with whitespace. 1462
 Error whitespace ParenPad '(' is not followed by whitespace. 1463
 Error whitespace ParenPad ')' is not preceded with whitespace. 1463
 Error whitespace ParenPad '(' is not followed by whitespace. 1464
 Error whitespace ParenPad ')' is not preceded with whitespace. 1464
 Error whitespace ParenPad '(' is not followed by whitespace. 1466
 Error whitespace ParenPad ')' is not preceded with whitespace. 1466
 Error whitespace ParenPad '(' is not followed by whitespace. 1467
 Error blocks LeftCurly '{' should be on a new line. 1467
 Error whitespace ParenPad '(' is not followed by whitespace. 1468
 Error whitespace ParenPad ')' is not preceded with whitespace. 1468
 Error whitespace ParenPad '(' is not followed by whitespace. 1469
 Error whitespace ParenPad ')' is not preceded with whitespace. 1469
 Error whitespace ParenPad '(' is not followed by whitespace. 1471
 Error whitespace ParenPad ')' is not preceded with whitespace. 1471
 Error whitespace ParenPad '(' is not followed by whitespace. 1472
 Error whitespace ParenPad ')' is not preceded with whitespace. 1472
 Error whitespace ParenPad '(' is not followed by whitespace. 1473
 Error whitespace ParenPad ')' is not preceded with whitespace. 1473
 Error whitespace ParenPad '(' is not followed by whitespace. 1474
 Error whitespace ParenPad ')' is not preceded with whitespace. 1474
 Error whitespace ParenPad '(' is not followed by whitespace. 1475
 Error whitespace ParenPad ')' is not preceded with whitespace. 1475
 Error sizes LineLength Line is longer than 120 characters (found 123). 1476
 Error whitespace ParenPad '(' is not followed by whitespace. 1476
 Error whitespace ParenPad ')' is not preceded with whitespace. 1476
 Error whitespace ParenPad '(' is not followed by whitespace. 1477
 Error whitespace ParenPad ')' is not preceded with whitespace. 1477
 Error whitespace ParenPad '(' is not followed by whitespace. 1482
 Error whitespace ParenPad ')' is not preceded with whitespace. 1482
 Error blocks LeftCurly '{' should be on a new line. 1482
 Error whitespace ParenPad '(' is not followed by whitespace. 1486
 Error whitespace ParenPad ')' is not preceded with whitespace. 1486
 Error whitespace ParenPad '(' is not followed by whitespace. 1487
 Error blocks LeftCurly '{' should be on a new line. 1487
 Error whitespace ParenPad '(' is not followed by whitespace. 1488
 Error whitespace ParenPad ')' is not preceded with whitespace. 1488
 Error whitespace ParenPad '(' is not followed by whitespace. 1489
 Error whitespace ParenPad ')' is not preceded with whitespace. 1489
 Error whitespace ParenPad '(' is not followed by whitespace. 1491
 Error whitespace ParenPad ')' is not preceded with whitespace. 1491
 Error whitespace ParenPad '(' is not followed by whitespace. 1496
 Error whitespace ParenPad ')' is not preceded with whitespace. 1496
 Error blocks LeftCurly '{' should be on a new line. 1496
 Error whitespace ParenPad '(' is not followed by whitespace. 1501
 Error whitespace ParenPad ')' is not preceded with whitespace. 1501
 Error whitespace ParenPad '(' is not followed by whitespace. 1503
 Error whitespace ParenPad ')' is not preceded with whitespace. 1503
 Error blocks LeftCurly '{' should be on a new line. 1503
 Error whitespace ParenPad '(' is not followed by whitespace. 1505
 Error whitespace ParenPad ')' is not preceded with whitespace. 1505
 Error blocks LeftCurly '{' should be on a new line. 1505
 Error whitespace ParenPad '(' is not followed by whitespace. 1506
 Error whitespace ParenPad '(' is not followed by whitespace. 1506
 Error whitespace ParenPad ')' is not preceded with whitespace. 1506
 Error whitespace ParenPad ')' is not preceded with whitespace. 1506
 Error whitespace ParenPad '(' is not followed by whitespace. 1507
 Error whitespace ParenPad ')' is not preceded with whitespace. 1507
 Error blocks LeftCurly '{' should be on a new line. 1507
 Error whitespace ParenPad '(' is not followed by whitespace. 1508
 Error whitespace ParenPad ')' is not preceded with whitespace. 1508
 Error whitespace ParenPad '(' is not followed by whitespace. 1514
 Error whitespace ParenPad ')' is not preceded with whitespace. 1514
 Error whitespace ParenPad '(' is not followed by whitespace. 1515
 Error whitespace ParenPad ')' is not preceded with whitespace. 1515
 Error whitespace ParenPad '(' is not followed by whitespace. 1516
 Error whitespace ParenPad ')' is not preceded with whitespace. 1516
 Error whitespace ParenPad '(' is not followed by whitespace. 1517
 Error whitespace ParenPad ')' is not preceded with whitespace. 1517
 Error whitespace ParenPad '(' is not followed by whitespace. 1518
 Error whitespace ParenPad ')' is not preceded with whitespace. 1518
 Error whitespace ParenPad '(' is not followed by whitespace. 1521
 Error whitespace ParenPad ')' is not preceded with whitespace. 1521
 Error whitespace ParenPad '(' is not followed by whitespace. 1523
 Error whitespace ParenPad ')' is not preceded with whitespace. 1523
 Error blocks LeftCurly '{' should be on a new line. 1523
 Error whitespace ParenPad '(' is not followed by whitespace. 1525
 Error whitespace ParenPad ')' is not preceded with whitespace. 1525
 Error blocks LeftCurly '{' should be on a new line. 1525
 Error whitespace ParenPad '(' is not followed by whitespace. 1526
 Error whitespace ParenPad '(' is not followed by whitespace. 1526
 Error whitespace ParenPad ')' is not preceded with whitespace. 1526
 Error whitespace ParenPad ')' is not preceded with whitespace. 1526
 Error whitespace ParenPad '(' is not followed by whitespace. 1527
 Error whitespace ParenPad ')' is not preceded with whitespace. 1527
 Error blocks LeftCurly '{' should be on a new line. 1527
 Error whitespace ParenPad '(' is not followed by whitespace. 1528
 Error whitespace ParenPad ')' is not preceded with whitespace. 1528
 Error whitespace ParenPad '(' is not followed by whitespace. 1534
 Error whitespace ParenPad ')' is not preceded with whitespace. 1534
 Error whitespace ParenPad '(' is not followed by whitespace. 1537
 Error whitespace ParenPad ')' is not preceded with whitespace. 1537
 Error whitespace ParenPad '(' is not followed by whitespace. 1539
 Error whitespace ParenPad ')' is not preceded with whitespace. 1539
 Error blocks LeftCurly '{' should be on a new line. 1539
 Error whitespace ParenPad '(' is not followed by whitespace. 1541
 Error whitespace ParenPad ')' is not preceded with whitespace. 1541
 Error blocks LeftCurly '{' should be on a new line. 1541
 Error whitespace ParenPad '(' is not followed by whitespace. 1542
 Error whitespace ParenPad '(' is not followed by whitespace. 1542
 Error whitespace ParenPad ')' is not preceded with whitespace. 1542
 Error whitespace ParenPad ')' is not preceded with whitespace. 1542
 Error whitespace ParenPad '(' is not followed by whitespace. 1543
 Error whitespace ParenPad ')' is not preceded with whitespace. 1543
 Error blocks LeftCurly '{' should be on a new line. 1543
 Error whitespace ParenPad '(' is not followed by whitespace. 1544
 Error whitespace ParenPad ')' is not preceded with whitespace. 1544
 Error whitespace ParenPad '(' is not followed by whitespace. 1550
 Error whitespace ParenPad ')' is not preceded with whitespace. 1550
 Error whitespace ParenPad '(' is not followed by whitespace. 1553
 Error whitespace ParenPad ')' is not preceded with whitespace. 1553
 Error whitespace ParenPad '(' is not followed by whitespace. 1555
 Error whitespace ParenPad ')' is not preceded with whitespace. 1555
 Error blocks LeftCurly '{' should be on a new line. 1555
 Error whitespace ParenPad '(' is not followed by whitespace. 1557
 Error whitespace ParenPad ')' is not preceded with whitespace. 1557
 Error blocks LeftCurly '{' should be on a new line. 1557
 Error whitespace ParenPad '(' is not followed by whitespace. 1558
 Error whitespace ParenPad '(' is not followed by whitespace. 1558
 Error whitespace ParenPad ')' is not preceded with whitespace. 1558
 Error whitespace ParenPad ')' is not preceded with whitespace. 1558
 Error whitespace ParenPad '(' is not followed by whitespace. 1559
 Error whitespace ParenPad ')' is not preceded with whitespace. 1559
 Error blocks LeftCurly '{' should be on a new line. 1559
 Error whitespace ParenPad '(' is not followed by whitespace. 1560
 Error whitespace ParenPad ')' is not preceded with whitespace. 1560
 Error whitespace ParenPad '(' is not followed by whitespace. 1566
 Error whitespace ParenPad ')' is not preceded with whitespace. 1566
 Error whitespace ParenPad '(' is not followed by whitespace. 1569
 Error whitespace ParenPad ')' is not preceded with whitespace. 1569
 Error whitespace ParenPad '(' is not followed by whitespace. 1571
 Error whitespace ParenPad ')' is not preceded with whitespace. 1571
 Error blocks LeftCurly '{' should be on a new line. 1571
 Error whitespace ParenPad '(' is not followed by whitespace. 1573
 Error whitespace ParenPad ')' is not preceded with whitespace. 1573
 Error blocks LeftCurly '{' should be on a new line. 1573
 Error whitespace ParenPad '(' is not followed by whitespace. 1574
 Error whitespace ParenPad '(' is not followed by whitespace. 1574
 Error whitespace ParenPad ')' is not preceded with whitespace. 1574
 Error whitespace ParenPad ')' is not preceded with whitespace. 1574
 Error whitespace ParenPad '(' is not followed by whitespace. 1575
 Error whitespace ParenPad ')' is not preceded with whitespace. 1575
 Error blocks LeftCurly '{' should be on a new line. 1575
 Error whitespace ParenPad '(' is not followed by whitespace. 1576
 Error whitespace ParenPad ')' is not preceded with whitespace. 1576
 Error whitespace ParenPad '(' is not followed by whitespace. 1582
 Error whitespace ParenPad ')' is not preceded with whitespace. 1582
 Error whitespace ParenPad '(' is not followed by whitespace. 1585
 Error whitespace ParenPad ')' is not preceded with whitespace. 1585
 Error whitespace ParenPad '(' is not followed by whitespace. 1587
 Error whitespace ParenPad ')' is not preceded with whitespace. 1587
 Error blocks LeftCurly '{' should be on a new line. 1587
 Error whitespace ParenPad '(' is not followed by whitespace. 1589
 Error whitespace ParenPad ')' is not preceded with whitespace. 1589
 Error blocks LeftCurly '{' should be on a new line. 1589
 Error whitespace ParenPad '(' is not followed by whitespace. 1590
 Error whitespace ParenPad '(' is not followed by whitespace. 1590
 Error whitespace ParenPad ')' is not preceded with whitespace. 1590
 Error whitespace ParenPad ')' is not preceded with whitespace. 1590
 Error whitespace ParenPad '(' is not followed by whitespace. 1591
 Error whitespace ParenPad ')' is not preceded with whitespace. 1591
 Error blocks LeftCurly '{' should be on a new line. 1591
 Error whitespace ParenPad '(' is not followed by whitespace. 1592
 Error whitespace ParenPad ')' is not preceded with whitespace. 1592
 Error whitespace ParenPad '(' is not followed by whitespace. 1598
 Error whitespace ParenPad ')' is not preceded with whitespace. 1598
 Error sizes LineLength Line is longer than 120 characters (found 127). 1599
 Error whitespace ParenPad '(' is not followed by whitespace. 1601
 Error whitespace ParenPad ')' is not preceded with whitespace. 1601
 Error whitespace ParenPad '(' is not followed by whitespace. 1603
 Error whitespace ParenPad ')' is not preceded with whitespace. 1603
 Error blocks LeftCurly '{' should be on a new line. 1603
 Error whitespace ParenPad '(' is not followed by whitespace. 1605
 Error whitespace ParenPad ')' is not preceded with whitespace. 1605
 Error blocks LeftCurly '{' should be on a new line. 1605
 Error whitespace ParenPad '(' is not followed by whitespace. 1606
 Error whitespace ParenPad '(' is not followed by whitespace. 1606
 Error whitespace ParenPad ')' is not preceded with whitespace. 1606
 Error whitespace ParenPad ')' is not preceded with whitespace. 1606
 Error whitespace ParenPad '(' is not followed by whitespace. 1607
 Error whitespace ParenPad ')' is not preceded with whitespace. 1607
 Error blocks LeftCurly '{' should be on a new line. 1607
 Error whitespace ParenPad '(' is not followed by whitespace. 1608
 Error whitespace ParenPad ')' is not preceded with whitespace. 1608
 Error whitespace ParenPad '(' is not followed by whitespace. 1614
 Error whitespace ParenPad ')' is not preceded with whitespace. 1614
 Error sizes LineLength Line is longer than 120 characters (found 136). 1615
 Error whitespace ParenPad '(' is not followed by whitespace. 1615
 Error whitespace ParenPad ')' is not preceded with whitespace. 1615
 Error whitespace ParenPad '(' is not followed by whitespace. 1616
 Error whitespace ParenPad ')' is not preceded with whitespace. 1616
 Error whitespace ParenPad '(' is not followed by whitespace. 1617
 Error whitespace ParenPad ')' is not preceded with whitespace. 1617
 Error whitespace ParenPad '(' is not followed by whitespace. 1618
 Error whitespace ParenPad ')' is not preceded with whitespace. 1618
 Error whitespace ParenPad '(' is not followed by whitespace. 1619
 Error whitespace ParenPad ')' is not preceded with whitespace. 1619
 Error whitespace ParenPad '(' is not followed by whitespace. 1620
 Error whitespace ParenPad ')' is not preceded with whitespace. 1620
 Error whitespace ParenPad '(' is not followed by whitespace. 1621
 Error whitespace ParenPad ')' is not preceded with whitespace. 1621
 Error whitespace ParenPad '(' is not followed by whitespace. 1622
 Error whitespace ParenPad ')' is not preceded with whitespace. 1622
 Error whitespace ParenPad '(' is not followed by whitespace. 1627
 Error whitespace ParenPad ')' is not preceded with whitespace. 1627
 Error blocks LeftCurly '{' should be on a new line. 1627
 Error whitespace ParenPad '(' is not followed by whitespace. 1630
 Error whitespace ParenPad ')' is not preceded with whitespace. 1630
 Error whitespace ParenPad '(' is not followed by whitespace. 1631
 Error whitespace ParenPad ')' is not preceded with whitespace. 1631
 Error whitespace ParenPad '(' is not followed by whitespace. 1632
 Error whitespace ParenPad ')' is not preceded with whitespace. 1632
 Error whitespace ParenPad '(' is not followed by whitespace. 1633
 Error whitespace ParenPad ')' is not preceded with whitespace. 1633
 Error whitespace ParenPad '(' is not followed by whitespace. 1638
 Error whitespace ParenPad ')' is not preceded with whitespace. 1638
 Error blocks LeftCurly '{' should be on a new line. 1638
 Error whitespace ParenPad '(' is not followed by whitespace. 1641
 Error whitespace ParenPad ')' is not preceded with whitespace. 1641
 Error whitespace ParenPad '(' is not followed by whitespace. 1642
 Error whitespace ParenPad ')' is not preceded with whitespace. 1642
 Error whitespace ParenPad '(' is not followed by whitespace. 1643
 Error whitespace ParenPad ')' is not preceded with whitespace. 1643
 Error whitespace ParenPad '(' is not followed by whitespace. 1644
 Error whitespace ParenPad ')' is not preceded with whitespace. 1644
 Error whitespace ParenPad '(' is not followed by whitespace. 1645
 Error whitespace ParenPad ')' is not preceded with whitespace. 1645
 Error whitespace ParenPad '(' is not followed by whitespace. 1646
 Error whitespace ParenPad ')' is not preceded with whitespace. 1646
 Error whitespace ParenPad '(' is not followed by whitespace. 1647
 Error whitespace ParenPad ')' is not preceded with whitespace. 1647
 Error whitespace ParenPad '(' is not followed by whitespace. 1648
 Error whitespace ParenPad ')' is not preceded with whitespace. 1648
 Error whitespace ParenPad '(' is not followed by whitespace. 1653
 Error whitespace ParenPad ')' is not preceded with whitespace. 1653
 Error blocks LeftCurly '{' should be on a new line. 1653
 Error whitespace ParenPad '(' is not followed by whitespace. 1658
 Error whitespace ParenPad ')' is not preceded with whitespace. 1658
 Error whitespace ParenPad '(' is not followed by whitespace. 1660
 Error whitespace ParenPad ')' is not preceded with whitespace. 1660
 Error blocks LeftCurly '{' should be on a new line. 1660
 Error whitespace ParenPad '(' is not followed by whitespace. 1662
 Error whitespace ParenPad ')' is not preceded with whitespace. 1662
 Error blocks LeftCurly '{' should be on a new line. 1662
 Error whitespace ParenPad '(' is not followed by whitespace. 1663
 Error whitespace ParenPad '(' is not followed by whitespace. 1663
 Error whitespace ParenPad ')' is not preceded with whitespace. 1663
 Error whitespace ParenPad ')' is not preceded with whitespace. 1663
 Error whitespace ParenPad '(' is not followed by whitespace. 1664
 Error whitespace ParenPad ')' is not preceded with whitespace. 1664
 Error blocks LeftCurly '{' should be on a new line. 1664
 Error whitespace ParenPad '(' is not followed by whitespace. 1665
 Error whitespace ParenPad ')' is not preceded with whitespace. 1665
 Error whitespace ParenPad '(' is not followed by whitespace. 1671
 Error whitespace ParenPad ')' is not preceded with whitespace. 1671
 Error whitespace ParenPad '(' is not followed by whitespace. 1673
 Error whitespace ParenPad '(' is not followed by whitespace. 1673
 Error whitespace ParenPad ')' is not preceded with whitespace. 1673
 Error whitespace ParenPad ')' is not preceded with whitespace. 1673
 Error whitespace ParenPad '(' is not followed by whitespace. 1674
 Error whitespace ParenPad ')' is not preceded with whitespace. 1674

org/apache/archiva/configuration/io/registry/ConfigurationRegistryWriter.java

Severity Category Rule Message Line
 Error header RegexpHeader Line does not match expected header line of '^package '. 1
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.apache.archiva.configuration.*. 23
 Error blocks LeftCurly '{' should be on a new line. 36
 Warning javadoc JavadocMethod Missing a Javadoc comment. 37
 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. 37
 Error whitespace ParenPad '(' is not followed by whitespace. 38
 Error whitespace ParenPad ')' is not preceded with whitespace. 38
 Error whitespace ParenPad '(' is not followed by whitespace. 41
 Error whitespace ParenPad ')' is not preceded with whitespace. 41
 Error blocks LeftCurly '{' should be on a new line. 41
 Error whitespace ParenPad '(' is not followed by whitespace. 42
 Error blocks LeftCurly '{' should be on a new line. 43
 Error whitespace ParenPad '(' is not followed by whitespace. 44
 Error whitespace ParenPad ')' is not preceded with whitespace. 44
 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. 47
 Error whitespace ParenPad '(' is not followed by whitespace. 50
 Error whitespace ParenPad ')' is not preceded with whitespace. 50
 Error whitespace ParenPad '(' is not followed by whitespace. 55
 Error whitespace ParenPad ')' is not preceded with whitespace. 55
 Error blocks LeftCurly '{' should be on a new line. 55
 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. 57
 Error blocks LeftCurly '{' should be on a new line. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 60
 Error whitespace ParenPad ')' is not preceded with whitespace. 60
 Error whitespace ParenPad '(' is not followed by whitespace. 62
 Error whitespace ParenPad '(' is not followed by whitespace. 62
 Error whitespace ParenPad ')' is not preceded with whitespace. 62
 Error blocks LeftCurly '{' should be on a new line. 63
 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 blocks LeftCurly '{' should be on a new line. 68
 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. 72
 Error whitespace ParenPad ')' is not preceded with whitespace. 72
 Error blocks LeftCurly '{' should be on a new line. 72
 Error whitespace ParenPad '(' is not followed by whitespace. 75
 Error whitespace ParenPad ')' is not preceded with whitespace. 75
 Error whitespace ParenPad '(' is not followed by whitespace. 78
 Error blocks LeftCurly '{' should be on a new line. 79
 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. 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. 86
 Error whitespace ParenPad ')' is not preceded with whitespace. 86
 Error whitespace ParenPad '(' is not followed by whitespace. 89
 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 whitespace ParenPad '(' is not followed by whitespace. 94
 Error whitespace ParenPad ')' is not preceded with whitespace. 94
 Error blocks LeftCurly '{' should be on a new line. 94
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 97
 Error whitespace ParenPad '(' is not followed by whitespace. 100
 Error blocks LeftCurly '{' should be on a new line. 101
 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. 105
 Error whitespace ParenPad ')' is not preceded with whitespace. 105
 Error blocks LeftCurly '{' should be on a new line. 105
 Error whitespace ParenPad '(' is not followed by whitespace. 108
 Error whitespace ParenPad ')' is not preceded with whitespace. 108
 Error whitespace ParenPad '(' is not followed by whitespace. 111
 Error blocks LeftCurly '{' should be on a new line. 112
 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. 116
 Error whitespace ParenPad ')' is not preceded with whitespace. 116
 Error blocks LeftCurly '{' should be on a new line. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 119
 Error whitespace ParenPad ')' is not preceded with whitespace. 119
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error blocks LeftCurly '{' should be on a new line. 123
 Error whitespace ParenPad '(' is not followed by whitespace. 124
 Error whitespace ParenPad ')' is not preceded with whitespace. 124
 Error whitespace ParenPad '(' is not followed by whitespace. 127
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error blocks LeftCurly '{' should be on a new line. 127
 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. 133
 Error blocks LeftCurly '{' should be on a new line. 134
 Error sizes LineLength Line is longer than 120 characters (found 126). 135
 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. 137
 Error blocks LeftCurly '{' should be on a new line. 138
 Error whitespace ParenPad '(' is not followed by whitespace. 139
 Error whitespace ParenPad ')' is not preceded with whitespace. 139
 Error whitespace ParenPad '(' is not followed by whitespace. 141
 Error blocks LeftCurly '{' should be on a new line. 142
 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. 145
 Error blocks LeftCurly '{' should be on a new line. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 147
 Error whitespace ParenPad ')' is not preceded with whitespace. 147
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error blocks LeftCurly '{' should be on a new line. 150
 Error sizes LineLength Line is longer than 120 characters (found 140). 151
 Error whitespace ParenPad '(' is not followed by whitespace. 151
 Error whitespace ParenPad ')' is not preceded with whitespace. 151
 Error whitespace ParenPad '(' is not followed by whitespace. 153
 Error blocks LeftCurly '{' should be on a new line. 154
 Error sizes LineLength Line is longer than 120 characters (found 140). 155
 Error whitespace ParenPad '(' is not followed by whitespace. 155
 Error whitespace ParenPad ')' is not preceded with whitespace. 155
 Error sizes LineLength Line is longer than 120 characters (found 125). 157
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error blocks LeftCurly '{' should be on a new line. 158
 Error whitespace ParenPad '(' is not followed by whitespace. 159
 Error whitespace ParenPad ')' is not preceded with whitespace. 159
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error blocks LeftCurly '{' should be on a new line. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 165
 Error whitespace ParenPad ')' is not preceded with whitespace. 165
 Error whitespace ParenPad '(' is not followed by whitespace. 168
 Error blocks LeftCurly '{' should be on a new line. 169
 Error sizes LineLength Line is longer than 120 characters (found 140). 170
 Error whitespace ParenPad '(' is not followed by whitespace. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error sizes LineLength Line is longer than 120 characters (found 128). 175
 Error whitespace ParenPad '(' is not followed by whitespace. 175
 Error whitespace ParenPad ')' is not preceded with whitespace. 175
 Error blocks LeftCurly '{' should be on a new line. 175
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 176
 Error blocks LeftCurly '{' should be on a new line. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 177
 Error blocks LeftCurly '{' should be on a new line. 178
 Error whitespace ParenPad '(' is not followed by whitespace. 180
 Error whitespace ParenPad ')' is not preceded with whitespace. 180
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad '(' is not followed by whitespace. 182
 Error whitespace ParenPad ')' is not preceded with whitespace. 182
 Error blocks LeftCurly '{' should be on a new line. 183
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 187
 Error blocks LeftCurly '{' should be on a new line. 188
 Error whitespace ParenPad '(' is not followed by whitespace. 190
 Error whitespace ParenPad ')' is not preceded with whitespace. 190
 Error whitespace ParenPad '(' is not followed by whitespace. 192
 Error whitespace ParenPad '(' is not followed by whitespace. 192
 Error whitespace ParenPad ')' is not preceded with whitespace. 192
 Error blocks LeftCurly '{' should be on a new line. 193
 Error whitespace ParenPad '(' is not followed by whitespace. 195
 Error whitespace ParenPad ')' is not preceded with whitespace. 195
 Error whitespace ParenPad '(' is not followed by whitespace. 197
 Error whitespace ParenPad '(' is not followed by whitespace. 197
 Error whitespace ParenPad ')' is not preceded with whitespace. 197
 Error blocks LeftCurly '{' should be on a new line. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 200
 Error whitespace ParenPad ')' is not preceded with whitespace. 200
 Error whitespace ParenPad '(' is not followed by whitespace. 202
 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. 203
 Error whitespace ParenPad '(' is not followed by whitespace. 205
 Error whitespace ParenPad ')' is not preceded with whitespace. 205
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 207
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error blocks LeftCurly '{' should be on a new line. 208
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error sizes LineLength Line is longer than 120 characters (found 124). 215
 Error whitespace ParenPad '(' is not followed by whitespace. 215
 Error whitespace ParenPad ')' is not preceded with whitespace. 215
 Error blocks LeftCurly '{' should be on a new line. 215
 Error whitespace ParenPad '(' is not followed by whitespace. 216
 Error whitespace ParenPad ')' is not preceded with whitespace. 216
 Error blocks LeftCurly '{' should be on a new line. 216
 Error whitespace ParenPad '(' is not followed by whitespace. 217
 Error blocks LeftCurly '{' should be on a new line. 218
 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. 222
 Error blocks LeftCurly '{' should be on a new line. 223
 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. 227
 Error blocks LeftCurly '{' should be on a new line. 228
 Error whitespace ParenPad '(' is not followed by whitespace. 230
 Error whitespace ParenPad ')' is not preceded with whitespace. 230
 Error whitespace ParenPad '(' is not followed by whitespace. 232
 Error coding MagicNumber '60' is a magic number. 232
 Error blocks LeftCurly '{' should be on a new line. 233
 Error whitespace ParenPad '(' is not followed by whitespace. 235
 Error whitespace ParenPad ')' is not preceded with whitespace. 235
 Error whitespace ParenPad '(' 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 blocks LeftCurly '{' should be on a new line. 238
 Error whitespace ParenPad '(' is not followed by whitespace. 240
 Error whitespace ParenPad ')' is not preceded with whitespace. 240
 Error whitespace ParenPad '(' is not followed by whitespace. 243
 Error whitespace ParenPad ')' is not preceded with whitespace. 243
 Error whitespace ParenPad '(' is not followed by whitespace. 244
 Error blocks LeftCurly '{' should be on a new line. 245
 Error whitespace ParenPad '(' is not followed by whitespace. 247
 Error whitespace ParenPad ')' is not preceded with whitespace. 247
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error blocks LeftCurly '{' should be on a new line. 250
 Error whitespace ParenPad '(' is not followed by whitespace. 252
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 254
 Error coding MagicNumber '300' is a magic number. 254
 Error blocks LeftCurly '{' should be on a new line. 255
 Error whitespace ParenPad '(' is not followed by whitespace. 257
 Error whitespace ParenPad ')' is not preceded with whitespace. 257
 Error whitespace ParenPad '(' is not followed by whitespace. 260
 Error whitespace ParenPad ')' is not preceded with whitespace. 260
 Error whitespace ParenPad '(' is not followed by whitespace. 261
 Error blocks LeftCurly '{' should be on a new line. 262
 Error whitespace ParenPad '(' is not followed by whitespace. 263
 Error whitespace ParenPad ')' is not preceded with whitespace. 263
 Error whitespace ParenPad '(' is not followed by whitespace. 265
 Error blocks LeftCurly '{' should be on a new line. 265
 Error whitespace ParenPad '(' is not followed by whitespace. 267
 Error whitespace ParenPad ')' is not preceded with whitespace. 267
 Error whitespace ParenPad '(' is not followed by whitespace. 269
 Error whitespace ParenPad ')' is not preceded with whitespace. 269
 Error whitespace ParenPad '(' is not followed by whitespace. 272
 Error blocks LeftCurly '{' should be on a new line. 273
 Error whitespace ParenPad '(' is not followed by whitespace. 274
 Error whitespace ParenPad ')' is not preceded with whitespace. 274
 Error whitespace ParenPad '(' is not followed by whitespace. 276
 Error blocks LeftCurly '{' should be on a new line. 276
 Error whitespace ParenPad '(' is not followed by whitespace. 278
 Error whitespace ParenPad ')' is not preceded with whitespace. 278
 Error whitespace ParenPad '(' is not followed by whitespace. 280
 Error whitespace ParenPad ')' is not preceded with whitespace. 280
 Error whitespace ParenPad '(' is not followed by whitespace. 283
 Error blocks LeftCurly '{' should be on a new line. 284
 Error whitespace ParenPad '(' is not followed by whitespace. 286
 Error whitespace ParenPad ')' is not preceded with whitespace. 286
 Error whitespace ParenPad '(' is not followed by whitespace. 288
 Error blocks LeftCurly '{' should be on a new line. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad '(' is not followed by whitespace. 293
 Error whitespace ParenPad '(' is not followed by whitespace. 293
 Error whitespace ParenPad ')' is not preceded with whitespace. 293
 Error blocks LeftCurly '{' should be on a new line. 294
 Error whitespace ParenPad '(' is not followed by whitespace. 296
 Error whitespace ParenPad ')' is not preceded with whitespace. 296
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error blocks LeftCurly '{' should be on a new line. 299
 Error whitespace ParenPad '(' is not followed by whitespace. 301
 Error whitespace ParenPad ')' is not preceded with whitespace. 301
 Error whitespace ParenPad '(' is not followed by whitespace. 303
 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. 304
 Error whitespace ParenPad '(' is not followed by whitespace. 306
 Error whitespace ParenPad ')' is not preceded with whitespace. 306
 Error whitespace ParenPad '(' is not followed by whitespace. 308
 Error whitespace ParenPad '(' is not followed by whitespace. 308
 Error whitespace ParenPad ')' is not preceded with whitespace. 308
 Error blocks LeftCurly '{' should be on a new line. 309
 Error whitespace ParenPad '(' is not followed by whitespace. 311
 Error whitespace ParenPad ')' is not preceded with whitespace. 311
 Error whitespace ParenPad '(' is not followed by whitespace. 313
 Error whitespace ParenPad '(' is not followed by whitespace. 313
 Error whitespace ParenPad ')' is not preceded with whitespace. 313
 Error blocks LeftCurly '{' should be on a new line. 314
 Error whitespace ParenPad '(' is not followed by whitespace. 316
 Error whitespace ParenPad ')' is not preceded with whitespace. 316
 Error whitespace ParenPad '(' is not followed by whitespace. 318
 Error whitespace ParenPad '(' is not followed by whitespace. 318
 Error whitespace ParenPad ')' is not preceded with whitespace. 318
 Error blocks LeftCurly '{' should be on a new line. 319
 Error whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error sizes LineLength Line is longer than 120 characters (found 126). 326
 Error whitespace ParenPad '(' is not followed by whitespace. 326
 Error whitespace ParenPad ')' is not preceded with whitespace. 326
 Error blocks LeftCurly '{' should be on a new line. 326
 Error whitespace ParenPad '(' is not followed by whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 327
 Error blocks LeftCurly '{' should be on a new line. 327
 Error whitespace ParenPad '(' is not followed by whitespace. 328
 Error blocks LeftCurly '{' should be on a new line. 329
 Error whitespace ParenPad '(' is not followed by whitespace. 331
 Error whitespace ParenPad ')' is not preceded with whitespace. 331
 Error whitespace ParenPad '(' is not followed by whitespace. 334
 Error whitespace ParenPad ')' is not preceded with whitespace. 334
 Error whitespace ParenPad '(' is not followed by whitespace. 336
 Error whitespace ParenPad ')' is not preceded with whitespace. 336
 Error whitespace ParenPad '(' is not followed by whitespace. 338
 Error whitespace ParenPad ')' is not preceded with whitespace. 338
 Error whitespace ParenPad '(' is not followed by whitespace. 340
 Error whitespace ParenPad ')' is not preceded with whitespace. 340
 Error whitespace ParenPad '(' is not followed by whitespace. 341
 Error whitespace ParenPad '(' is not followed by whitespace. 341
 Error whitespace ParenPad ')' is not preceded with whitespace. 341
 Error blocks LeftCurly '{' should be on a new line. 342
 Error whitespace ParenPad '(' is not followed by whitespace. 344
 Error whitespace ParenPad ')' is not preceded with whitespace. 344
 Error whitespace ParenPad '(' is not followed by whitespace. 346
 Error blocks LeftCurly '{' should be on a new line. 347
 Error whitespace ParenPad '(' is not followed by whitespace. 349
 Error whitespace ParenPad ')' is not preceded with whitespace. 349
 Error whitespace ParenPad '(' is not followed by whitespace. 351
 Error blocks LeftCurly '{' should be on a new line. 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. 357
 Error whitespace ParenPad ')' is not preceded with whitespace. 357
 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. 361
 Error whitespace ParenPad ')' is not preceded with whitespace. 361
 Error whitespace ParenPad '(' is not followed by whitespace. 362
 Error blocks LeftCurly '{' should be on a new line. 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. 367
 Error whitespace ParenPad '(' is not followed by whitespace. 367
 Error whitespace ParenPad ')' is not preceded with whitespace. 367
 Error blocks LeftCurly '{' should be on a new line. 368
 Error whitespace ParenPad '(' is not followed by whitespace. 370
 Error whitespace ParenPad ')' is not preceded with whitespace. 370
 Error whitespace ParenPad '(' is not followed by whitespace. 372
 Error blocks LeftCurly '{' should be on a new line. 373
 Error whitespace ParenPad '(' is not followed by whitespace. 375
 Error whitespace ParenPad ')' is not preceded with whitespace. 375
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad '(' is not followed by whitespace. 377
 Error whitespace ParenPad ')' is not preceded with whitespace. 377
 Error blocks LeftCurly '{' should be on a new line. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 380
 Error whitespace ParenPad ')' is not preceded with whitespace. 380
 Error whitespace ParenPad '(' is not followed by whitespace. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 382
 Error whitespace ParenPad ')' is not preceded with whitespace. 382
 Error blocks LeftCurly '{' should be on a new line. 383
 Error whitespace ParenPad '(' is not followed by whitespace. 385
 Error whitespace ParenPad ')' is not preceded with whitespace. 385
 Error whitespace ParenPad '(' is not followed by whitespace. 387
 Error whitespace ParenPad '(' is not followed by whitespace. 387
 Error whitespace ParenPad ')' is not preceded with whitespace. 387
 Error blocks LeftCurly '{' should be on a new line. 388
 Error whitespace ParenPad '(' is not followed by whitespace. 390
 Error whitespace ParenPad ')' is not preceded with whitespace. 390
 Error whitespace ParenPad '(' is not followed by whitespace. 392
 Error whitespace ParenPad '(' is not followed by whitespace. 392
 Error whitespace ParenPad ')' is not preceded with whitespace. 392
 Error blocks LeftCurly '{' should be on a new line. 393
 Error whitespace ParenPad '(' is not followed by whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 395
 Error whitespace ParenPad '(' is not followed by whitespace. 400
 Error whitespace ParenPad ')' is not preceded with whitespace. 400
 Error blocks LeftCurly '{' should be on a new line. 400
 Error whitespace ParenPad '(' is not followed by whitespace. 401
 Error whitespace ParenPad ')' is not preceded with whitespace. 401
 Error blocks LeftCurly '{' should be on a new line. 401
 Error whitespace ParenPad '(' is not followed by whitespace. 402
 Error blocks LeftCurly '{' should be on a new line. 403
 Error whitespace ParenPad '(' is not followed by whitespace. 405
 Error whitespace ParenPad ')' is not preceded with whitespace. 405
 Error whitespace ParenPad '(' is not followed by whitespace. 407
 Error blocks LeftCurly '{' should be on a new line. 408
 Error whitespace ParenPad '(' is not followed by whitespace. 410
 Error whitespace ParenPad ')' is not preceded with whitespace. 410
 Error sizes LineLength Line is longer than 120 characters (found 122). 415
 Error whitespace ParenPad '(' is not followed by whitespace. 415
 Error whitespace ParenPad ')' is not preceded with whitespace. 415
 Error blocks LeftCurly '{' should be on a new line. 415
 Error whitespace ParenPad '(' is not followed by whitespace. 416
 Error whitespace ParenPad ')' is not preceded with whitespace. 416
 Error blocks LeftCurly '{' should be on a new line. 416
 Error whitespace ParenPad '(' is not followed by whitespace. 417
 Error blocks LeftCurly '{' should be on a new line. 418
 Error whitespace ParenPad '(' is not followed by whitespace. 420
 Error whitespace ParenPad ')' is not preceded with whitespace. 420
 Error whitespace ParenPad '(' is not followed by whitespace. 422
 Error whitespace ParenPad ')' is not preceded with whitespace. 422
 Error blocks LeftCurly '{' should be on a new line. 422
 Error whitespace ParenPad '(' is not followed by whitespace. 423
 Error whitespace ParenPad ')' is not preceded with whitespace. 423
 Error whitespace ParenPad '(' is not followed by whitespace. 425
 Error whitespace ParenPad ')' is not preceded with whitespace. 425
 Error blocks LeftCurly '{' should be on a new line. 425
 Error whitespace ParenPad '(' is not followed by whitespace. 426
 Error whitespace ParenPad ')' is not preceded with whitespace. 426
 Error whitespace ParenPad '(' is not followed by whitespace. 428
 Error whitespace ParenPad '(' is not followed by whitespace. 428
 Error whitespace ParenPad ')' is not preceded with whitespace. 428
 Error blocks LeftCurly '{' should be on a new line. 429
 Error whitespace ParenPad '(' is not followed by whitespace. 431
 Error whitespace ParenPad ')' is not preceded with whitespace. 431
 Error whitespace ParenPad '(' is not followed by whitespace. 433
 Error coding MagicNumber '30' is a magic number. 433
 Error blocks LeftCurly '{' should be on a new line. 434
 Error whitespace ParenPad '(' is not followed by whitespace. 436
 Error whitespace ParenPad ')' is not preceded with whitespace. 436
 Error whitespace ParenPad '(' is not followed by whitespace. 438
 Error whitespace ParenPad '(' is not followed by whitespace. 438
 Error whitespace ParenPad ')' is not preceded with whitespace. 438
 Error blocks LeftCurly '{' should be on a new line. 439
 Error whitespace ParenPad '(' is not followed by whitespace. 441
 Error whitespace ParenPad ')' is not preceded with whitespace. 441
 Error whitespace ParenPad '(' is not followed by whitespace. 443
 Error blocks LeftCurly '{' should be on a new line. 444
 Error whitespace ParenPad '(' is not followed by whitespace. 445
 Error whitespace ParenPad ')' is not preceded with whitespace. 445
 Error whitespace ParenPad '(' is not followed by whitespace. 448
 Error whitespace ParenPad ')' is not preceded with whitespace. 448
 Error blocks LeftCurly '{' should be on a new line. 448
 Error whitespace ParenPad '(' is not followed by whitespace. 451
 Error whitespace ParenPad ')' is not preceded with whitespace. 451
 Error whitespace ParenPad '(' is not followed by whitespace. 457
 Error whitespace ParenPad ')' is not preceded with whitespace. 457
 Error blocks LeftCurly '{' should be on a new line. 457
 Error whitespace ParenPad '(' is not followed by whitespace. 458
 Error whitespace ParenPad ')' is not preceded with whitespace. 458
 Error blocks LeftCurly '{' should be on a new line. 458
 Error whitespace ParenPad '(' is not followed by whitespace. 459
 Error blocks LeftCurly '{' should be on a new line. 460
 Error whitespace ParenPad '(' is not followed by whitespace. 462
 Error whitespace ParenPad ')' is not preceded with whitespace. 462
 Error whitespace ParenPad '(' is not followed by whitespace. 464
 Error blocks LeftCurly '{' should be on a new line. 465
 Error whitespace ParenPad '(' is not followed by whitespace. 467
 Error whitespace ParenPad ')' is not preceded with whitespace. 467
 Error sizes LineLength Line is longer than 120 characters (found 146). 472
 Error whitespace ParenPad '(' is not followed by whitespace. 472
 Error whitespace ParenPad ')' is not preceded with whitespace. 472
 Error blocks LeftCurly '{' should be on a new line. 472
 Error whitespace ParenPad '(' is not followed by whitespace. 473
 Error whitespace ParenPad ')' is not preceded with whitespace. 473
 Error blocks LeftCurly '{' should be on a new line. 473
 Error whitespace ParenPad '(' is not followed by whitespace. 474
 Error blocks LeftCurly '{' should be on a new line. 475
 Error whitespace ParenPad '(' is not followed by whitespace. 477
 Error whitespace ParenPad ')' is not preceded with whitespace. 477
 Error whitespace ParenPad '(' is not followed by whitespace. 479
 Error blocks LeftCurly '{' should be on a new line. 480
 Error whitespace ParenPad '(' is not followed by whitespace. 482
 Error whitespace ParenPad ')' is not preceded with whitespace. 482
 Error whitespace ParenPad '(' is not followed by whitespace. 484
 Error blocks LeftCurly '{' should be on a new line. 485
 Error whitespace ParenPad '(' is not followed by whitespace. 487
 Error whitespace ParenPad ')' is not preceded with whitespace. 487
 Error whitespace ParenPad '(' is not followed by whitespace. 489
 Error blocks LeftCurly '{' should be on a new line. 490
 Error whitespace ParenPad '(' is not followed by whitespace. 491
 Error whitespace ParenPad ')' is not preceded with whitespace. 491
 Error whitespace ParenPad '(' is not followed by whitespace. 494
 Error whitespace ParenPad ')' is not preceded with whitespace. 494
 Error blocks LeftCurly '{' should be on a new line. 494
 Error whitespace ParenPad '(' is not followed by whitespace. 497
 Error whitespace ParenPad ')' is not preceded with whitespace. 497
 Error whitespace ParenPad '(' is not followed by whitespace. 500
 Error blocks LeftCurly '{' should be on a new line. 501
 Error whitespace ParenPad '(' is not followed by whitespace. 502
 Error whitespace ParenPad ')' is not preceded with whitespace. 502
 Error whitespace ParenPad '(' is not followed by whitespace. 505
 Error whitespace ParenPad ')' is not preceded with whitespace. 505
 Error blocks LeftCurly '{' should be on a new line. 505
 Error whitespace ParenPad '(' is not followed by whitespace. 508
 Error whitespace ParenPad ')' is not preceded with whitespace. 508
 Error whitespace ParenPad '(' is not followed by whitespace. 511
 Error blocks LeftCurly '{' should be on a new line. 512
 Error whitespace ParenPad '(' is not followed by whitespace. 513
 Error whitespace ParenPad ')' is not preceded with whitespace. 513
 Error whitespace ParenPad '(' is not followed by whitespace. 515
 Error blocks LeftCurly '{' should be on a new line. 515
 Error whitespace ParenPad '(' is not followed by whitespace. 517
 Error whitespace ParenPad ')' is not preceded with whitespace. 517
 Error whitespace ParenPad '(' is not followed by whitespace. 519
 Error whitespace ParenPad ')' is not preceded with whitespace. 519
 Error whitespace ParenPad '(' is not followed by whitespace. 522
 Error blocks LeftCurly '{' should be on a new line. 523
 Error whitespace ParenPad '(' is not followed by whitespace. 524
 Error whitespace ParenPad ')' is not preceded with whitespace. 524
 Error whitespace ParenPad '(' is not followed by whitespace. 526
 Error blocks LeftCurly '{' should be on a new line. 526
 Error whitespace ParenPad '(' is not followed by whitespace. 528
 Error whitespace ParenPad ')' is not preceded with whitespace. 528
 Error whitespace ParenPad '(' is not followed by whitespace. 530
 Error whitespace ParenPad ')' is not preceded with whitespace. 530
 Error whitespace ParenPad '(' is not followed by whitespace. 534
 Error whitespace ParenPad ')' is not preceded with whitespace. 534
 Error sizes LineLength Line is longer than 120 characters (found 128). 538
 Error whitespace ParenPad '(' is not followed by whitespace. 538
 Error whitespace ParenPad ')' is not preceded with whitespace. 538
 Error blocks LeftCurly '{' should be on a new line. 538
 Error whitespace ParenPad '(' is not followed by whitespace. 539
 Error whitespace ParenPad ')' is not preceded with whitespace. 539
 Error blocks LeftCurly '{' should be on a new line. 539
 Error whitespace ParenPad '(' is not followed by whitespace. 540
 Error blocks LeftCurly '{' should be on a new line. 541
 Error whitespace ParenPad '(' is not followed by whitespace. 543
 Error whitespace ParenPad ')' is not preceded with whitespace. 543
 Error whitespace ParenPad '(' is not followed by whitespace. 545
 Error blocks LeftCurly '{' should be on a new line. 546
 Error whitespace ParenPad '(' is not followed by whitespace. 548
 Error whitespace ParenPad ')' is not preceded with whitespace. 548
 Error whitespace ParenPad '(' is not followed by whitespace. 550
 Error blocks LeftCurly '{' should be on a new line. 551
 Error whitespace ParenPad '(' is not followed by whitespace. 552
 Error whitespace ParenPad ')' is not preceded with whitespace. 552
 Error whitespace ParenPad '(' is not followed by whitespace. 555
 Error whitespace ParenPad ')' is not preceded with whitespace. 555
 Error blocks LeftCurly '{' should be on a new line. 555
 Error whitespace ParenPad '(' is not followed by whitespace. 558
 Error whitespace ParenPad ')' is not preceded with whitespace. 558
 Error whitespace ParenPad '(' is not followed by whitespace. 564
 Error whitespace ParenPad ')' is not preceded with whitespace. 564
 Error blocks LeftCurly '{' should be on a new line. 564
 Error whitespace ParenPad '(' is not followed by whitespace. 565
 Error whitespace ParenPad ')' is not preceded with whitespace. 565
 Error blocks LeftCurly '{' should be on a new line. 565
 Error whitespace ParenPad '(' is not followed by whitespace. 566
 Error blocks LeftCurly '{' should be on a new line. 567
 Error whitespace ParenPad '(' is not followed by whitespace. 569
 Error whitespace ParenPad ')' is not preceded with whitespace. 569
 Error whitespace ParenPad '(' is not followed by whitespace. 571
 Error blocks LeftCurly '{' should be on a new line. 572
 Error whitespace ParenPad '(' is not followed by whitespace. 574
 Error whitespace ParenPad ')' is not preceded with whitespace. 574
 Error whitespace ParenPad '(' is not followed by whitespace. 576
 Error blocks LeftCurly '{' should be on a new line. 577
 Error whitespace ParenPad '(' is not followed by whitespace. 579
 Error whitespace ParenPad ')' is not preceded with whitespace. 579
 Error whitespace ParenPad '(' is not followed by whitespace. 581
 Error blocks LeftCurly '{' should be on a new line. 582
 Error whitespace ParenPad '(' is not followed by whitespace. 584
 Error whitespace ParenPad ')' is not preceded with whitespace. 584
 Error whitespace ParenPad '(' is not followed by whitespace. 586
 Error blocks LeftCurly '{' should be on a new line. 587
 Error whitespace ParenPad '(' is not followed by whitespace. 588
 Error whitespace ParenPad ')' is not preceded with whitespace. 588
 Error whitespace ParenPad '(' is not followed by whitespace. 591
 Error whitespace ParenPad ')' is not preceded with whitespace. 591
 Error blocks LeftCurly '{' should be on a new line. 591
 Error whitespace ParenPad '(' is not followed by whitespace. 594
 Error whitespace ParenPad ')' is not preceded with whitespace. 594
 Error whitespace ParenPad '(' is not followed by whitespace. 597
 Error blocks LeftCurly '{' should be on a new line. 598
 Error whitespace ParenPad '(' is not followed by whitespace. 599
 Error whitespace ParenPad ')' is not preceded with whitespace. 599
 Error whitespace ParenPad '(' is not followed by whitespace. 602
 Error whitespace ParenPad ')' is not preceded with whitespace. 602
 Error blocks LeftCurly '{' should be on a new line. 602
 Error whitespace ParenPad '(' is not followed by whitespace. 605
 Error whitespace ParenPad ')' is not preceded with whitespace. 605
 Error whitespace ParenPad '(' is not followed by whitespace. 608
 Error blocks LeftCurly '{' should be on a new line. 609
 Error whitespace ParenPad '(' is not followed by whitespace. 610
 Error whitespace ParenPad ')' is not preceded with whitespace. 610
 Error whitespace ParenPad '(' is not followed by whitespace. 612
 Error blocks LeftCurly '{' should be on a new line. 612
 Error whitespace ParenPad '(' is not followed by whitespace. 614
 Error whitespace ParenPad ')' is not preceded with whitespace. 614
 Error whitespace ParenPad '(' is not followed by whitespace. 616
 Error whitespace ParenPad ')' is not preceded with whitespace. 616
 Error whitespace ParenPad '(' is not followed by whitespace. 619
 Error blocks LeftCurly '{' should be on a new line. 620
 Error whitespace ParenPad '(' is not followed by whitespace. 621
 Error whitespace ParenPad ')' is not preceded with whitespace. 621
 Error whitespace ParenPad '(' is not followed by whitespace. 623
 Error blocks LeftCurly '{' should be on a new line. 623
 Error whitespace ParenPad '(' is not followed by whitespace. 625
 Error whitespace ParenPad ')' is not preceded with whitespace. 625
 Error whitespace ParenPad '(' is not followed by whitespace. 627
 Error whitespace ParenPad ')' is not preceded with whitespace. 627
 Error whitespace ParenPad '(' is not followed by whitespace. 631
 Error whitespace ParenPad ')' is not preceded with whitespace. 631
 Error whitespace ParenPad '(' is not followed by whitespace. 635
 Error whitespace ParenPad ')' is not preceded with whitespace. 635
 Error blocks LeftCurly '{' should be on a new line. 635
 Error whitespace ParenPad '(' is not followed by whitespace. 636
 Error whitespace ParenPad ')' is not preceded with whitespace. 636
 Error blocks LeftCurly '{' should be on a new line. 636
 Error whitespace ParenPad '(' is not followed by whitespace. 637
 Error whitespace ParenPad '(' is not followed by whitespace. 637
 Error whitespace ParenPad ')' is not preceded with whitespace. 637
 Error blocks LeftCurly '{' should be on a new line. 638
 Error whitespace ParenPad '(' is not followed by whitespace. 640
 Error whitespace ParenPad ')' is not preceded with whitespace. 640
 Error whitespace ParenPad '(' is not followed by whitespace. 642
 Error whitespace ParenPad '(' is not followed by whitespace. 642
 Error whitespace ParenPad ')' is not preceded with whitespace. 642
 Error blocks LeftCurly '{' should be on a new line. 643
 Error whitespace ParenPad '(' is not followed by whitespace. 645
 Error whitespace ParenPad ')' is not preceded with whitespace. 645
 Error whitespace ParenPad '(' is not followed by whitespace. 647
 Error blocks LeftCurly '{' should be on a new line. 648
 Error whitespace ParenPad '(' is not followed by whitespace. 650
 Error whitespace ParenPad ')' is not preceded with whitespace. 650
 Error whitespace ParenPad '(' is not followed by whitespace. 652
 Error blocks LeftCurly '{' should be on a new line. 653
 Error whitespace ParenPad '(' is not followed by whitespace. 655
 Error whitespace ParenPad ')' is not preceded with whitespace. 655
 Error whitespace ParenPad '(' is not followed by whitespace. 657
 Error blocks LeftCurly '{' should be on a new line. 658
 Error whitespace ParenPad '(' is not followed by whitespace. 660
 Error whitespace ParenPad ')' is not preceded with whitespace. 660
 Error whitespace ParenPad '(' is not followed by whitespace. 662
 Error blocks LeftCurly '{' should be on a new line. 663
 Error whitespace ParenPad '(' is not followed by whitespace. 664
 Error whitespace ParenPad ')' is not preceded with whitespace. 664
 Error whitespace ParenPad '(' is not followed by whitespace. 667
 Error whitespace ParenPad ')' is not preceded with whitespace. 667
 Error blocks LeftCurly '{' should be on a new line. 667
 Error whitespace ParenPad '(' is not followed by whitespace. 670
 Error whitespace ParenPad ')' is not preceded with whitespace. 670
 Error whitespace ParenPad '(' is not followed by whitespace. 673
 Error blocks LeftCurly '{' should be on a new line. 674
 Error whitespace ParenPad '(' is not followed by whitespace. 675
 Error whitespace ParenPad ')' is not preceded with whitespace. 675
 Error whitespace ParenPad '(' is not followed by whitespace. 678
 Error whitespace ParenPad ')' is not preceded with whitespace. 678
 Error blocks LeftCurly '{' should be on a new line. 678
 Error whitespace ParenPad '(' is not followed by whitespace. 681
 Error whitespace ParenPad ')' is not preceded with whitespace. 681
 Error whitespace ParenPad '(' is not followed by whitespace. 684
 Error blocks LeftCurly '{' should be on a new line. 685
 Error whitespace ParenPad '(' is not followed by whitespace. 686
 Error whitespace ParenPad ')' is not preceded with whitespace. 686
 Error whitespace ParenPad '(' is not followed by whitespace. 688
 Error blocks LeftCurly '{' should be on a new line. 688
 Error whitespace ParenPad '(' is not followed by whitespace. 690
 Error whitespace ParenPad ')' is not preceded with whitespace. 690
 Error whitespace ParenPad '(' is not followed by whitespace. 692
 Error whitespace ParenPad ')' is not preceded with whitespace. 692
 Error whitespace ParenPad '(' is not followed by whitespace. 695
 Error blocks LeftCurly '{' should be on a new line. 696
 Error whitespace ParenPad '(' is not followed by whitespace. 697
 Error whitespace ParenPad ')' is not preceded with whitespace. 697
 Error whitespace ParenPad '(' is not followed by whitespace. 699
 Error blocks LeftCurly '{' should be on a new line. 699
 Error whitespace ParenPad '(' is not followed by whitespace. 701
 Error whitespace ParenPad ')' is not preceded with whitespace. 701
 Error whitespace ParenPad '(' is not followed by whitespace. 703
 Error whitespace ParenPad ')' is not preceded with whitespace. 703
 Error whitespace ParenPad '(' is not followed by whitespace. 707
 Error whitespace ParenPad ')' is not preceded with whitespace. 707
 Error whitespace ParenPad '(' is not followed by whitespace. 711
 Error whitespace ParenPad ')' is not preceded with whitespace. 711
 Error blocks LeftCurly '{' should be on a new line. 711
 Error whitespace ParenPad '(' is not followed by whitespace. 712
 Error whitespace ParenPad ')' is not preceded with whitespace. 712
 Error blocks LeftCurly '{' should be on a new line. 712
 Error whitespace ParenPad '(' is not followed by whitespace. 713
 Error blocks LeftCurly '{' should be on a new line. 714
 Error whitespace ParenPad '(' is not followed by whitespace. 716
 Error whitespace ParenPad ')' is not preceded with whitespace. 716
 Error whitespace ParenPad '(' is not followed by whitespace. 718
 Error whitespace ParenPad '(' is not followed by whitespace. 718
 Error whitespace ParenPad ')' is not preceded with whitespace. 718
 Error blocks LeftCurly '{' should be on a new line. 719
 Error whitespace ParenPad '(' is not followed by whitespace. 721
 Error whitespace ParenPad ')' is not preceded with whitespace. 721
 Error whitespace ParenPad '(' is not followed by whitespace. 723
 Error blocks LeftCurly '{' should be on a new line. 724
 Error whitespace ParenPad '(' is not followed by whitespace. 726
 Error whitespace ParenPad ')' is not preceded with whitespace. 726
 Error whitespace ParenPad '(' is not followed by whitespace. 728
 Error coding MagicNumber '8080' is a magic number. 728
 Error blocks LeftCurly '{' should be on a new line. 729
 Error whitespace ParenPad '(' is not followed by whitespace. 731
 Error whitespace ParenPad ')' is not preceded with whitespace. 731
 Error whitespace ParenPad '(' is not followed by whitespace. 733
 Error blocks LeftCurly '{' should be on a new line. 734
 Error whitespace ParenPad '(' is not followed by whitespace. 736
 Error whitespace ParenPad ')' is not preceded with whitespace. 736
 Error whitespace ParenPad '(' is not followed by whitespace. 738
 Error blocks LeftCurly '{' should be on a new line. 739
 Error whitespace ParenPad '(' is not followed by whitespace. 741
 Error whitespace ParenPad ')' is not preceded with whitespace. 741
 Error whitespace ParenPad '(' is not followed by whitespace. 744
 Error whitespace ParenPad ')' is not preceded with whitespace. 744
 Error sizes LineLength Line is longer than 120 characters (found 128). 748
 Error whitespace ParenPad '(' is not followed by whitespace. 748
 Error whitespace ParenPad ')' is not preceded with whitespace. 748
 Error blocks LeftCurly '{' should be on a new line. 748
 Error whitespace ParenPad '(' is not followed by whitespace. 749
 Error whitespace ParenPad ')' is not preceded with whitespace. 749
 Error blocks LeftCurly '{' should be on a new line. 749
 Error whitespace ParenPad '(' is not followed by whitespace. 750
 Error blocks LeftCurly '{' should be on a new line. 751
 Error whitespace ParenPad '(' is not followed by whitespace. 752
 Error whitespace ParenPad ')' is not preceded with whitespace. 752
 Error whitespace ParenPad '(' is not followed by whitespace. 755
 Error whitespace ParenPad ')' is not preceded with whitespace. 755
 Error blocks LeftCurly '{' should be on a new line. 755
 Error whitespace ParenPad '(' is not followed by whitespace. 758
 Error whitespace ParenPad ')' is not preceded with whitespace. 758
 Error whitespace ParenPad '(' is not followed by whitespace. 761
 Error blocks LeftCurly '{' should be on a new line. 762
 Error whitespace ParenPad '(' is not followed by whitespace. 763
 Error whitespace ParenPad ')' is not preceded with whitespace. 763
 Error whitespace ParenPad '(' is not followed by whitespace. 766
 Error whitespace ParenPad ')' is not preceded with whitespace. 766
 Error blocks LeftCurly '{' should be on a new line. 766
 Error whitespace ParenPad '(' is not followed by whitespace. 769
 Error whitespace ParenPad ')' is not preceded with whitespace. 769
 Error whitespace ParenPad '(' is not followed by whitespace. 772
 Error blocks LeftCurly '{' should be on a new line. 773
 Error whitespace ParenPad '(' is not followed by whitespace. 774
 Error whitespace ParenPad ')' is not preceded with whitespace. 774
 Error whitespace ParenPad '(' is not followed by whitespace. 777
 Error whitespace ParenPad ')' is not preceded with whitespace. 777
 Error blocks LeftCurly '{' should be on a new line. 777
 Error whitespace ParenPad '(' is not followed by whitespace. 780
 Error whitespace ParenPad ')' is not preceded with whitespace. 780
 Error whitespace ParenPad '(' is not followed by whitespace. 786
 Error whitespace ParenPad ')' is not preceded with whitespace. 786
 Error blocks LeftCurly '{' should be on a new line. 786
 Error whitespace ParenPad '(' is not followed by whitespace. 787
 Error whitespace ParenPad ')' is not preceded with whitespace. 787
 Error blocks LeftCurly '{' should be on a new line. 787
 Error whitespace ParenPad '(' is not followed by whitespace. 788
 Error blocks LeftCurly '{' should be on a new line. 789
 Error whitespace ParenPad '(' is not followed by whitespace. 791
 Error whitespace ParenPad ')' is not preceded with whitespace. 791
 Error whitespace ParenPad '(' is not followed by whitespace. 793
 Error blocks LeftCurly '{' should be on a new line. 794
 Error whitespace ParenPad '(' is not followed by whitespace. 795
 Error whitespace ParenPad ')' is not preceded with whitespace. 795
 Error whitespace ParenPad '(' is not followed by whitespace. 798
 Error whitespace ParenPad ')' is not preceded with whitespace. 798
 Error blocks LeftCurly '{' should be on a new line. 798
 Error whitespace ParenPad '(' is not followed by whitespace. 801
 Error whitespace ParenPad ')' is not preceded with whitespace. 801
 Error whitespace ParenPad '(' is not followed by whitespace. 807
 Error whitespace ParenPad ')' is not preceded with whitespace. 807
 Error blocks LeftCurly '{' should be on a new line. 807
 Error whitespace ParenPad '(' is not followed by whitespace. 808
 Error whitespace ParenPad ')' is not preceded with whitespace. 808
 Error blocks LeftCurly '{' should be on a new line. 808
 Error whitespace ParenPad '(' is not followed by whitespace. 809
 Error blocks LeftCurly '{' should be on a new line. 810
 Error whitespace ParenPad '(' is not followed by whitespace. 812
 Error whitespace ParenPad ')' is not preceded with whitespace. 812
 Error whitespace ParenPad '(' is not followed by whitespace. 814
 Error blocks LeftCurly '{' should be on a new line. 815
 Error whitespace ParenPad '(' is not followed by whitespace. 817
 Error whitespace ParenPad ')' is not preceded with whitespace. 817
 Error whitespace ParenPad '(' is not followed by whitespace. 819
 Error blocks LeftCurly '{' should be on a new line. 820
 Error whitespace ParenPad '(' is not followed by whitespace. 822
 Error whitespace ParenPad ')' is not preceded with whitespace. 822
 Error whitespace ParenPad '(' is not followed by whitespace. 827
 Error whitespace ParenPad ')' is not preceded with whitespace. 827
 Error blocks LeftCurly '{' should be on a new line. 827
 Error whitespace ParenPad '(' is not followed by whitespace. 828
 Error whitespace ParenPad ')' is not preceded with whitespace. 828
 Error blocks LeftCurly '{' should be on a new line. 828
 Error whitespace ParenPad '(' is not followed by whitespace. 829
 Error blocks LeftCurly '{' should be on a new line. 830
 Error whitespace ParenPad '(' is not followed by whitespace. 831
 Error whitespace ParenPad ')' is not preceded with whitespace. 831
 Error whitespace ParenPad '(' is not followed by whitespace. 836
 Error whitespace ParenPad ')' is not preceded with whitespace. 836
 Error blocks LeftCurly '{' should be on a new line. 836
 Error whitespace ParenPad '(' is not followed by whitespace. 837
 Error whitespace ParenPad ')' is not preceded with whitespace. 837
 Error blocks LeftCurly '{' should be on a new line. 837
 Error whitespace ParenPad '(' is not followed by whitespace. 839
 Error whitespace ParenPad ')' is not preceded with whitespace. 839
 Error whitespace ParenPad '(' is not followed by whitespace. 841
 Error whitespace ParenPad ')' is not preceded with whitespace. 841
 Error whitespace ParenPad '(' is not followed by whitespace. 843
 Error whitespace ParenPad ')' is not preceded with whitespace. 843
 Error whitespace ParenPad '(' is not followed by whitespace. 844
 Error blocks LeftCurly '{' should be on a new line. 845
 Error whitespace ParenPad '(' is not followed by whitespace. 847
 Error whitespace ParenPad ')' is not preceded with whitespace. 847
 Error whitespace ParenPad '(' is not followed by whitespace. 850
 Error whitespace ParenPad ')' is not preceded with whitespace. 850
 Error whitespace ParenPad '(' is not followed by whitespace. 854
 Error whitespace ParenPad ')' is not preceded with whitespace. 854
 Error blocks LeftCurly '{' should be on a new line. 854
 Error whitespace ParenPad '(' is not followed by whitespace. 855
 Error whitespace ParenPad ')' is not preceded with whitespace. 855
 Error blocks LeftCurly '{' should be on a new line. 855
 Error whitespace ParenPad '(' is not followed by whitespace. 856
 Error coding MagicNumber '30' is a magic number. 856
 Error blocks LeftCurly '{' should be on a new line. 857
 Error whitespace ParenPad '(' is not followed by whitespace. 859
 Error whitespace ParenPad ')' is not preceded with whitespace. 859
 Error whitespace ParenPad '(' is not followed by whitespace. 861
 Error coding MagicNumber '30' is a magic number. 861
 Error blocks LeftCurly '{' should be on a new line. 862
 Error whitespace ParenPad '(' is not followed by whitespace. 864
 Error whitespace ParenPad ')' is not preceded with whitespace. 864
 Error whitespace ParenPad '(' is not followed by whitespace. 867
 Error whitespace ParenPad ')' is not preceded with whitespace. 867
 Error whitespace ParenPad '(' is not followed by whitespace. 871
 Error whitespace ParenPad ')' is not preceded with whitespace. 871
 Error blocks LeftCurly '{' should be on a new line. 871
 Error whitespace ParenPad '(' is not followed by whitespace. 872
 Error whitespace ParenPad ')' is not preceded with whitespace. 872
 Error blocks LeftCurly '{' should be on a new line. 872
 Error whitespace ParenPad '(' is not followed by whitespace. 873
 Error blocks LeftCurly '{' should be on a new line. 874
 Error sizes LineLength Line is longer than 120 characters (found 133). 875
 Error whitespace ParenPad '(' is not followed by whitespace. 875
 Error whitespace ParenPad ')' is not preceded with whitespace. 875
 Error whitespace ParenPad '(' is not followed by whitespace. 877
 Error blocks LeftCurly '{' should be on a new line. 878
 Error sizes LineLength Line is longer than 120 characters (found 122). 879
 Error whitespace ParenPad '(' is not followed by whitespace. 879
 Error whitespace ParenPad ')' is not preceded with whitespace. 879
 Error whitespace ParenPad '(' is not followed by whitespace. 881
 Error blocks LeftCurly '{' should be on a new line. 882
 Error whitespace ParenPad '(' is not followed by whitespace. 884
 Error whitespace ParenPad ')' is not preceded with whitespace. 884
 Error whitespace ParenPad '(' is not followed by whitespace. 886
 Error blocks LeftCurly '{' should be on a new line. 887
 Error whitespace ParenPad '(' is not followed by whitespace. 889
 Error whitespace ParenPad ')' is not preceded with whitespace. 889
 Error whitespace ParenPad '(' is not followed by whitespace. 891
 Error blocks LeftCurly '{' should be on a new line. 892
 Error whitespace ParenPad '(' is not followed by whitespace. 894
 Error whitespace ParenPad ')' is not preceded with whitespace. 894
 Error whitespace ParenPad '(' is not followed by whitespace. 896
 Error blocks LeftCurly '{' should be on a new line. 897
 Error whitespace ParenPad '(' is not followed by whitespace. 899
 Error whitespace ParenPad ')' is not preceded with whitespace. 899
 Error whitespace ParenPad '(' is not followed by whitespace. 902
 Error whitespace ParenPad '(' is not followed by whitespace. 902
 Error whitespace ParenPad ')' is not preceded with whitespace. 902
 Error blocks LeftCurly '{' should be on a new line. 903
 Error whitespace ParenPad '(' is not followed by whitespace. 905
 Error whitespace ParenPad ')' is not preceded with whitespace. 905
 Error whitespace ParenPad '(' is not followed by whitespace. 907
 Error whitespace ParenPad '(' is not followed by whitespace. 907
 Error whitespace ParenPad ')' is not preceded with whitespace. 907
 Error blocks LeftCurly '{' should be on a new line. 908
 Error whitespace ParenPad '(' is not followed by whitespace. 910
 Error whitespace ParenPad ')' is not preceded with whitespace. 910
 Error whitespace ParenPad '(' is not followed by whitespace. 912
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 912
 Error whitespace WhitespaceAround '+' is not followed by whitespace. 912
 Error whitespace ParenPad ')' is not preceded with whitespace. 912
 Error whitespace ParenPad '(' is not followed by whitespace. 916
 Error whitespace ParenPad ')' is not preceded with whitespace. 916
 Error blocks LeftCurly '{' should be on a new line. 916
 Error whitespace ParenPad '(' is not followed by whitespace. 917
 Error whitespace ParenPad ')' is not preceded with whitespace. 917
 Error blocks LeftCurly '{' should be on a new line. 917
 Error whitespace ParenPad '(' is not followed by whitespace. 919
 Error whitespace ParenPad ')' is not preceded with whitespace. 919
 Error whitespace ParenPad '(' is not followed by whitespace. 920
 Error blocks LeftCurly '{' should be on a new line. 921
 Error whitespace ParenPad '(' is not followed by whitespace. 922
 Error whitespace ParenPad ')' is not preceded with whitespace. 922
 Error whitespace ParenPad '(' is not followed by whitespace. 925
 Error whitespace ParenPad ')' is not preceded with whitespace. 925
 Error blocks LeftCurly '{' should be on a new line. 925
 Error whitespace ParenPad '(' is not followed by whitespace. 928
 Error whitespace ParenPad ')' is not preceded with whitespace. 928
 Error whitespace ParenPad '(' is not followed by whitespace. 931
 Error blocks LeftCurly '{' should be on a new line. 932
 Error whitespace ParenPad '(' is not followed by whitespace. 933
 Error whitespace ParenPad ')' is not preceded with whitespace. 933
 Error whitespace ParenPad '(' is not followed by whitespace. 936
 Error whitespace ParenPad ')' is not preceded with whitespace. 936
 Error blocks LeftCurly '{' should be on a new line. 936
 Error whitespace ParenPad '(' is not followed by whitespace. 939
 Error whitespace ParenPad ')' is not preceded with whitespace. 939
 Error whitespace ParenPad '(' is not followed by whitespace. 942
 Error blocks LeftCurly '{' should be on a new line. 943
 Error whitespace ParenPad '(' is not followed by whitespace. 944
 Error whitespace ParenPad ')' is not preceded with whitespace. 944
 Error whitespace ParenPad '(' is not followed by whitespace. 946
 Error blocks LeftCurly '{' should be on a new line. 947
 Error whitespace ParenPad '(' is not followed by whitespace. 948
 Error whitespace ParenPad ')' is not preceded with whitespace. 948
 Error whitespace ParenPad '(' is not followed by whitespace. 951
 Error whitespace ParenPad ')' is not preceded with whitespace. 951
 Error blocks LeftCurly '{' should be on a new line. 951
 Error whitespace ParenPad '(' is not followed by whitespace. 954
 Error whitespace ParenPad ')' is not preceded with whitespace. 954
 Error whitespace ParenPad '(' is not followed by whitespace. 957
 Error blocks LeftCurly '{' should be on a new line. 958
 Error whitespace ParenPad '(' is not followed by whitespace. 959
 Error whitespace ParenPad ')' is not preceded with whitespace. 959
 Error whitespace ParenPad '(' is not followed by whitespace. 961
 Error blocks LeftCurly '{' should be on a new line. 961
 Error whitespace ParenPad '(' is not followed by whitespace. 963
 Error whitespace ParenPad ')' is not preceded with whitespace. 963
 Error whitespace ParenPad '(' is not followed by whitespace. 965
 Error whitespace ParenPad ')' is not preceded with whitespace. 965
 Error whitespace ParenPad '(' is not followed by whitespace. 969
 Error whitespace ParenPad ')' is not preceded with whitespace. 969
 Error whitespace ParenPad '(' is not followed by whitespace. 970
 Error blocks LeftCurly '{' should be on a new line. 971
 Error sizes LineLength Line is longer than 120 characters (found 123). 972
 Error whitespace ParenPad '(' is not followed by whitespace. 972
 Error whitespace ParenPad ')' is not preceded with whitespace. 972
 Error whitespace ParenPad '(' is not followed by whitespace. 977
 Error whitespace ParenPad ')' is not preceded with whitespace. 977
 Error blocks LeftCurly '{' should be on a new line. 977
 Error whitespace ParenPad '(' is not followed by whitespace. 978
 Error whitespace ParenPad ')' is not preceded with whitespace. 978
 Error blocks LeftCurly '{' should be on a new line. 978
 Error whitespace ParenPad '(' is not followed by whitespace. 979
 Error blocks LeftCurly '{' should be on a new line. 980
 Error whitespace ParenPad '(' is not followed by whitespace. 981
 Error whitespace ParenPad ')' is not preceded with whitespace. 981
 Error whitespace ParenPad '(' is not followed by whitespace. 984
 Error whitespace ParenPad ')' is not preceded with whitespace. 984
 Error blocks LeftCurly '{' should be on a new line. 984
 Error whitespace ParenPad '(' is not followed by whitespace. 987
 Error whitespace ParenPad ')' is not preceded with whitespace. 987
 Error whitespace ParenPad '(' is not followed by whitespace. 993
 Error whitespace ParenPad ')' is not preceded with whitespace. 993
 Error blocks LeftCurly '{' should be on a new line. 993
 Error whitespace ParenPad '(' is not followed by whitespace. 994
 Error whitespace ParenPad ')' is not preceded with whitespace. 994
 Error blocks LeftCurly '{' should be on a new line. 994
 Error whitespace ParenPad '(' is not followed by whitespace. 995
 Error blocks LeftCurly '{' should be on a new line. 996
 Error whitespace ParenPad '(' is not followed by whitespace. 998
 Error whitespace ParenPad ')' is not preceded with whitespace. 998
 Error whitespace ParenPad '(' is not followed by whitespace. 1000
 Error blocks LeftCurly '{' should be on a new line. 1001
 Error whitespace ParenPad '(' is not followed by whitespace. 1003
 Error whitespace ParenPad ')' is not preceded with whitespace. 1003
 Error whitespace ParenPad '(' is not followed by whitespace. 1006
 Error whitespace ParenPad ')' is not preceded with whitespace. 1006
 Error whitespace ParenPad '(' is not followed by whitespace. 1007
 Error blocks LeftCurly '{' should be on a new line. 1008
 Error whitespace ParenPad '(' is not followed by whitespace. 1010
 Error whitespace ParenPad ')' is not preceded with whitespace. 1010
 Error whitespace ParenPad '(' is not followed by whitespace. 1012
 Error blocks LeftCurly '{' should be on a new line. 1013
 Error whitespace ParenPad '(' is not followed by whitespace. 1015
 Error whitespace ParenPad ')' is not preceded with whitespace. 1015
 Error whitespace ParenPad '(' is not followed by whitespace. 1017
 Error blocks LeftCurly '{' should be on a new line. 1018
 Error whitespace ParenPad '(' is not followed by whitespace. 1020
 Error whitespace ParenPad ')' is not preceded with whitespace. 1020
 Error whitespace ParenPad '(' is not followed by whitespace. 1022
 Error blocks LeftCurly '{' should be on a new line. 1023
 Error whitespace ParenPad '(' is not followed by whitespace. 1025
 Error whitespace ParenPad ')' is not preceded with whitespace. 1025
 Error whitespace ParenPad '(' is not followed by whitespace. 1027
 Error blocks LeftCurly '{' should be on a new line. 1028
 Error whitespace ParenPad '(' is not followed by whitespace. 1030
 Error whitespace ParenPad ')' is not preceded with whitespace. 1030
 Error whitespace ParenPad '(' is not followed by whitespace. 1032
 Error blocks LeftCurly '{' should be on a new line. 1033
 Error whitespace ParenPad '(' is not followed by whitespace. 1035
 Error whitespace ParenPad ')' is not preceded with whitespace. 1035
 Error whitespace ParenPad '(' is not followed by whitespace. 1038
 Error whitespace ParenPad ')' is not preceded with whitespace. 1038
 Error whitespace ParenPad '(' is not followed by whitespace. 1040
 Error whitespace ParenPad ')' is not preceded with whitespace. 1040
 Error whitespace ParenPad '(' is not followed by whitespace. 1042
 Error whitespace ParenPad ')' is not preceded with whitespace. 1042
 Error whitespace ParenPad '(' is not followed by whitespace. 1043
 Error blocks LeftCurly '{' should be on a new line. 1044
 Error whitespace ParenPad '(' is not followed by whitespace. 1045
 Error whitespace ParenPad ')' is not preceded with whitespace. 1045
 Error whitespace ParenPad '(' is not followed by whitespace. 1047
 Error blocks LeftCurly '{' should be on a new line. 1047
 Error whitespace ParenPad '(' is not followed by whitespace. 1049
 Error whitespace ParenPad ')' is not preceded with whitespace. 1049
 Error whitespace ParenPad '(' is not followed by whitespace. 1051
 Error whitespace ParenPad ')' is not preceded with whitespace. 1051
 Error whitespace ParenPad '(' is not followed by whitespace. 1057
 Error whitespace ParenPad ')' is not preceded with whitespace. 1057
 Error blocks LeftCurly '{' should be on a new line. 1057
 Error whitespace ParenPad '(' is not followed by whitespace. 1058
 Error whitespace ParenPad ')' is not preceded with whitespace. 1058
 Error blocks LeftCurly '{' should be on a new line. 1058
 Error whitespace ParenPad '(' is not followed by whitespace. 1060
 Error whitespace ParenPad ')' is not preceded with whitespace. 1060
 Error whitespace ParenPad '(' is not followed by whitespace. 1061
 Error blocks LeftCurly '{' should be on a new line. 1062
 Error whitespace ParenPad '(' is not followed by whitespace. 1064
 Error whitespace ParenPad ')' is not preceded with whitespace. 1064
 Error whitespace ParenPad '(' is not followed by whitespace. 1069
 Error whitespace ParenPad ')' is not preceded with whitespace. 1069
 Error blocks LeftCurly '{' should be on a new line. 1069
 Error whitespace ParenPad '(' is not followed by whitespace. 1070
 Error whitespace ParenPad ')' is not preceded with whitespace. 1070
 Error blocks LeftCurly '{' should be on a new line. 1070
 Error whitespace ParenPad '(' is not followed by whitespace. 1071
 Error blocks LeftCurly '{' should be on a new line. 1072
 Error whitespace ParenPad '(' is not followed by whitespace. 1074
 Error whitespace ParenPad ')' is not preceded with whitespace. 1074
 Error whitespace ParenPad '(' is not followed by whitespace. 1076
 Error blocks LeftCurly '{' should be on a new line. 1077
 Error whitespace ParenPad '(' is not followed by whitespace. 1079
 Error whitespace ParenPad ')' is not preceded with whitespace. 1079
 Error whitespace ParenPad '(' is not followed by whitespace. 1081
 Error blocks LeftCurly '{' should be on a new line. 1082
 Error whitespace ParenPad '(' is not followed by whitespace. 1084
 Error whitespace ParenPad ')' is not preceded with whitespace. 1084
 Error whitespace ParenPad '(' is not followed by whitespace. 1086
 Error blocks LeftCurly '{' should be on a new line. 1087
 Error whitespace ParenPad '(' is not followed by whitespace. 1089
 Error whitespace ParenPad ')' is not preceded with whitespace. 1089
 Error whitespace ParenPad '(' is not followed by whitespace. 1094
 Error whitespace ParenPad ')' is not preceded with whitespace. 1094
 Error blocks LeftCurly '{' should be on a new line. 1094
 Error whitespace ParenPad '(' is not followed by whitespace. 1095
 Error whitespace ParenPad ')' is not preceded with whitespace. 1095
 Error blocks LeftCurly '{' should be on a new line. 1095
 Error whitespace ParenPad '(' is not followed by whitespace. 1096
 Error blocks LeftCurly '{' should be on a new line. 1097
 Error whitespace ParenPad '(' is not followed by whitespace. 1099
 Error whitespace ParenPad ')' is not preceded with whitespace. 1099
 Error whitespace ParenPad '(' is not followed by whitespace. 1101
 Error blocks LeftCurly '{' should be on a new line. 1102
 Error whitespace ParenPad '(' is not followed by whitespace. 1103
 Error whitespace ParenPad ')' is not preceded with whitespace. 1103
 Error whitespace ParenPad '(' is not followed by whitespace. 1106
 Error whitespace ParenPad ')' is not preceded with whitespace. 1106
 Error blocks LeftCurly '{' should be on a new line. 1106
 Error whitespace ParenPad '(' is not followed by whitespace. 1109
 Error whitespace ParenPad ')' is not preceded with whitespace. 1109

org/apache/archiva/configuration/util/PathMatcher.java

Severity Category Rule Message Line
 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 whitespace ParenPad '(' is not followed by whitespace. 59
 Error whitespace ParenPad ')' is not preceded with whitespace. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 81
 Error blocks LeftCurly '{' should be on a new line. 81
 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 blocks LeftCurly '{' should be on a new line. 91
 Error whitespace ParenPad '(' is not followed by whitespace. 97
 Error whitespace ParenPad ')' is not preceded with whitespace. 97
 Error blocks LeftCurly '{' should be on a new line. 97
 Error whitespace ParenPad '(' is not followed by whitespace. 99
 Error whitespace ParenPad ')' is not preceded with whitespace. 99
 Error blocks LeftCurly '{' should be on a new line. 99
 Error whitespace ParenPad '(' is not followed by whitespace. 102
 Error whitespace ParenPad ')' is not preceded with whitespace. 102
 Error blocks LeftCurly '{' should be on a new line. 102
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad '(' is not followed by whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error whitespace ParenPad ')' is not preceded with whitespace. 104
 Error blocks LeftCurly '{' should be on a new line. 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. 116
 Error whitespace ParenPad ')' is not preceded with whitespace. 116
 Error blocks LeftCurly '{' should be on a new line. 116
 Error whitespace ParenPad '(' is not followed by whitespace. 118
 Error whitespace ParenPad ')' is not preceded with whitespace. 118
 Error blocks LeftCurly '{' should be on a new line. 118
 Error whitespace ParenPad '(' is not followed by whitespace. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error blocks LeftCurly '{' should be on a new line. 122
 Error whitespace ParenPad '(' is not followed by whitespace. 128
 Error whitespace ParenPad ')' is not preceded with whitespace. 128
 Error blocks LeftCurly '{' should be on a new line. 128
 Error whitespace ParenPad '(' is not followed by whitespace. 131
 Error whitespace ParenPad ')' is not preceded with whitespace. 131
 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 whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace ParenPad ')' is not preceded with whitespace. 137
 Error blocks LeftCurly '{' should be on a new line. 137
 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 preceded with whitespace. 140
 Error blocks LeftCurly '{' should be on a new line. 140
 Error whitespace ParenPad '(' is not followed by whitespace. 146
 Error whitespace ParenPad ')' is not preceded with whitespace. 146
 Error blocks LeftCurly '{' should be on a new line. 146
 Error whitespace ParenPad '(' is not followed by whitespace. 149
 Error whitespace ParenPad ')' is not preceded with whitespace. 149
 Error whitespace ParenPad '(' is not followed by whitespace. 154
 Error whitespace ParenPad ')' is not preceded with whitespace. 154
 Error blocks LeftCurly '{' should be on a new line. 154
 Error whitespace ParenPad '(' is not followed by whitespace. 156
 Error whitespace ParenPad ')' is not preceded with whitespace. 156
 Error blocks LeftCurly '{' should be on a new line. 156
 Error whitespace ParenPad '(' is not followed by whitespace. 157
 Error whitespace ParenPad ')' is not preceded with whitespace. 157
 Error blocks LeftCurly '{' should be on a new line. 157
 Error whitespace ParenPad '(' is not followed by whitespace. 162
 Error whitespace ParenPad ')' is not preceded with whitespace. 162
 Error blocks LeftCurly '{' should be on a new line. 162
 Error whitespace ParenPad '(' is not followed by whitespace. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 169
 Error whitespace ParenPad '(' is not followed by whitespace. 170
 Error whitespace ParenPad ')' is not preceded with whitespace. 170
 Error whitespace ParenPad '(' is not followed by whitespace. 173
 Error whitespace ParenPad ')' is not preceded with whitespace. 173
 Error blocks LeftCurly '{' should be on a new line. 173
 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
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad '(' is not followed by whitespace. 176
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error whitespace ParenPad ')' is not preceded with whitespace. 177
 Error blocks LeftCurly '{' should be on a new line. 177
 Error whitespace ParenPad '(' is not followed by whitespace. 185
 Error whitespace ParenPad ')' is not preceded with whitespace. 185
 Error blocks LeftCurly '{' should be on a new line. 185
 Error whitespace ParenPad '(' is not followed by whitespace. 194
 Error whitespace ParenPad ')' is not preceded with whitespace. 194
 Error whitespace ParenPad '(' is not followed by whitespace. 197
 Error whitespace ParenPad ')' is not preceded with whitespace. 197
 Error blocks LeftCurly '{' should be on a new line. 197
 Error whitespace ParenPad '(' is not followed by whitespace. 198
 Error whitespace ParenPad ')' is not preceded with whitespace. 198
 Error blocks LeftCurly '{' should be on a new line. 198
 Error whitespace ParenPad '(' is not followed by whitespace. 199
 Error whitespace ParenPad ')' is not preceded with whitespace. 199
 Error blocks LeftCurly '{' should be on a new line. 199
 Error whitespace ParenPad ')' is not preceded with whitespace. 207
 Error blocks LeftCurly '{' should be on a new line. 207
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error whitespace ParenPad '(' is not followed by whitespace. 210
 Error whitespace ParenPad ')' is not preceded with whitespace. 210
 Error whitespace ParenPad '(' is not followed by whitespace. 228
 Error whitespace ParenPad ')' is not preceded with whitespace. 228
 Error blocks LeftCurly '{' should be on a new line. 228
 Error whitespace ParenPad '(' is not followed by whitespace. 229
 Error whitespace ParenPad ')' is not preceded with whitespace. 229
 Error whitespace ParenPad '(' is not followed by whitespace. 230
 Error whitespace ParenPad '(' is not followed by whitespace. 230
 Error whitespace ParenPad ')' is not preceded with whitespace. 230
 Error whitespace ParenPad ')' is not preceded with whitespace. 230
 Error whitespace ParenPad '(' is not followed by whitespace. 249
 Error whitespace ParenPad ')' is not preceded with whitespace. 250
 Error blocks LeftCurly '{' should be on a new line. 250
 Error whitespace ParenPad '(' is not followed by whitespace. 251
 Error whitespace ParenPad ')' is not preceded with whitespace. 251
 Error whitespace ParenPad '(' is not followed by whitespace. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 252
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error whitespace ParenPad '(' is not followed by whitespace. 256
 Error whitespace ParenPad ')' is not preceded with whitespace. 256
 Error blocks LeftCurly '{' should be on a new line. 256
 Error whitespace ParenPad ')' is not preceded with whitespace. 260
 Error blocks LeftCurly '{' should be on a new line. 260
 Error whitespace ParenPad '(' is not followed by whitespace. 268
 Error whitespace ParenPad ')' is not preceded with whitespace. 268
 Error blocks LeftCurly '{' should be on a new line. 268
 Error whitespace ParenPad '(' is not followed by whitespace. 269
 Error whitespace ParenPad '(' is not followed by whitespace. 269
 Error whitespace ParenPad ')' is not preceded with whitespace. 269
 Error whitespace ParenPad ')' is not preceded with whitespace. 269
 Error blocks LeftCurly '{' should be on a new line. 269
 Error whitespace ParenPad '(' is not followed by whitespace. 270
 Error whitespace ParenPad ')' is not preceded with whitespace. 270
 Error blocks LeftCurly '{' should be on a new line. 270
 Error whitespace ParenPad '(' is not followed by whitespace. 276
 Error whitespace ParenPad ')' is not preceded with whitespace. 276
 Error blocks LeftCurly '{' should be on a new line. 276
 Error whitespace ParenPad '(' is not followed by whitespace. 279
 Error whitespace ParenPad '(' is not followed by whitespace. 279
 Error whitespace ParenPad ')' is not preceded with whitespace. 279
 Error whitespace ParenPad ')' is not preceded with whitespace. 279
 Error whitespace ParenPad '(' is not followed by whitespace. 281
 Error whitespace ParenPad ')' is not preceded with whitespace. 281
 Error blocks LeftCurly '{' should be on a new line. 281
 Error blocks RightCurly '}' should be alone on a line. 284
 Error blocks LeftCurly '{' should be on a new line. 284
 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 followed by whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error whitespace ParenPad ')' is not preceded with whitespace. 289
 Error blocks LeftCurly '{' should be on a new line. 289
 Error whitespace ParenPad '(' is not followed by whitespace. 290
 Error whitespace ParenPad ')' is not preceded with whitespace. 290
 Error blocks LeftCurly '{' should be on a new line. 290
 Error whitespace ParenPad '(' is not followed by whitespace. 291
 Error whitespace ParenPad ')' is not preceded with whitespace. 291
 Error whitespace ParenPad '(' is not followed by whitespace. 297
 Error whitespace ParenPad ')' is not preceded with whitespace. 297
 Error blocks LeftCurly '{' should be on a new line. 297
 Error whitespace ParenPad '(' is not followed by whitespace. 298
 Error whitespace ParenPad ')' is not preceded with whitespace. 298
 Warning javadoc JavadocMethod Expected an @return tag. 308
 Warning javadoc JavadocMethod Expected @param tag for 'tokenizedPattern'. 308
 Warning javadoc JavadocMethod Expected @param tag for 'strDirs'. 308
 Warning javadoc JavadocMethod Expected @param tag for 'isCaseSensitive'. 309
 Error blocks LeftCurly '{' should be on a new line. 309
 Error whitespace ParenPad '(' is not followed by whitespace. 316
 Error whitespace ParenPad ')' is not preceded with whitespace. 316
 Error blocks LeftCurly '{' should be on a new line. 316
 Error whitespace ParenPad '(' is not followed by whitespace. 318
 Error whitespace ParenPad '(' is not followed by whitespace. 318
 Error whitespace ParenPad ')' is not preceded with whitespace. 318
 Error whitespace ParenPad ')' is not preceded with whitespace. 318
 Error blocks LeftCurly '{' should be on a new line. 318
 Error whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error whitespace ParenPad ')' is not preceded with whitespace. 321
 Error blocks LeftCurly '{' should be on a new line. 321
 Error whitespace ParenPad '(' is not followed by whitespace. 327
 Error whitespace ParenPad ')' is not preceded with whitespace. 327
 Error blocks LeftCurly '{' should be on a new line. 327
 Error whitespace ParenPad '(' is not followed by whitespace. 329
 Error whitespace ParenPad ')' is not preceded with whitespace. 329
 Error blocks LeftCurly '{' should be on a new line. 329
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad '(' is not followed by whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 330
 Error whitespace ParenPad ')' is not preceded with whitespace. 330
 Error blocks LeftCurly '{' should be on a new line. 330
 Error whitespace ParenPad '(' is not followed by whitespace. 336
 Error whitespace ParenPad ')' is not preceded with whitespace. 336
 Error blocks LeftCurly '{' should be on a new line. 336
 Error whitespace ParenPad '(' is not followed by whitespace. 342
 Error whitespace ParenPad ')' is not preceded with whitespace. 342
 Error blocks LeftCurly '{' should be on a new line. 342
 Error whitespace ParenPad '(' is not followed by whitespace. 344
 Error whitespace ParenPad '(' is not followed by whitespace. 344
 Error whitespace ParenPad ')' is not preceded with 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. 347
 Error whitespace ParenPad '(' is not followed by whitespace. 347
 Error whitespace ParenPad ')' is not preceded with whitespace. 347
 Error whitespace ParenPad ')' is not preceded with whitespace. 347
 Error blocks LeftCurly '{' should be on a new line. 347
 Error whitespace ParenPad '(' is not followed by whitespace. 353
 Error whitespace ParenPad ')' is not preceded with whitespace. 353
 Error blocks LeftCurly '{' should be on a new line. 353
 Error whitespace ParenPad '(' is not followed by whitespace. 355
 Error whitespace ParenPad ')' is not preceded with whitespace. 355
 Error blocks LeftCurly '{' should be on a new line. 355
 Error whitespace ParenPad '(' is not followed by whitespace. 356
 Error whitespace ParenPad '(' is not followed by whitespace. 356
 Error whitespace ParenPad ')' is not preceded with whitespace. 356
 Error whitespace ParenPad ')' is not preceded with whitespace. 356
 Error blocks LeftCurly '{' should be on a new line. 356
 Error whitespace ParenPad '(' is not followed by whitespace. 363
 Error whitespace ParenPad ')' is not preceded with whitespace. 363
 Error blocks LeftCurly '{' should be on a new line. 363
 Error whitespace ParenPad '(' is not followed by whitespace. 365
 Error whitespace ParenPad ')' is not preceded with whitespace. 365
 Error blocks LeftCurly '{' should be on a new line. 365
 Error whitespace ParenPad '(' is not followed by whitespace. 366
 Error whitespace ParenPad '(' is not followed by whitespace. 366
 Error whitespace ParenPad ')' is not preceded with whitespace. 366
 Error whitespace ParenPad ')' is not preceded with whitespace. 366
 Error blocks LeftCurly '{' should be on a new line. 366
 Error whitespace ParenPad '(' is not followed by whitespace. 371
 Error whitespace ParenPad ')' is not preceded with whitespace. 371
 Error blocks LeftCurly '{' should be on a new line. 371
 Error whitespace ParenPad '(' is not followed by whitespace. 378
 Error whitespace ParenPad ')' is not preceded with whitespace. 378
 Error whitespace ParenPad '(' is not followed by whitespace. 379
 Error whitespace ParenPad ')' is not preceded with whitespace. 379
 Error whitespace ParenPad '(' is not followed by whitespace. 382
 Error whitespace ParenPad ')' is not preceded with whitespace. 382
 Error blocks LeftCurly '{' should be on a new line. 382
 Error whitespace ParenPad '(' is not followed by whitespace. 383
 Error whitespace ParenPad ')' is not preceded with whitespace. 383
 Error blocks LeftCurly '{' should be on a new line. 383
 Error whitespace ParenPad '(' is not followed by whitespace. 386
 Error whitespace ParenPad '(' is not followed by whitespace. 386
 Error whitespace ParenPad ')' is not preceded with whitespace. 386
 Error whitespace ParenPad ')' is not preceded with whitespace. 386
 Error blocks LeftCurly '{' should be on a new line. 386
 Error whitespace ParenPad '(' is not followed by whitespace. 393
 Error whitespace ParenPad ')' is not preceded with whitespace. 393
 Error blocks LeftCurly '{' should be on a new line. 393
 Error whitespace ParenPad '(' is not followed by whitespace. 401
 Error whitespace ParenPad ')' is not preceded with whitespace. 401
 Error blocks LeftCurly '{' should be on a new line. 401
 Error whitespace ParenPad '(' is not followed by whitespace. 402
 Error whitespace ParenPad '(' is not followed by whitespace. 402
 Error whitespace ParenPad ')' is not preceded with whitespace. 402
 Error whitespace ParenPad ')' is not preceded with whitespace. 402
 Error blocks LeftCurly '{' should be on a new line. 402