Checkstyle: Add 'WhitespaceAfter' check, fix some violations

This commit is contained in:
ljacqu
2018-09-01 08:38:14 +02:00
parent e2e2c6bb79
commit 58e04556ee
11 changed files with 24 additions and 22 deletions
@@ -188,7 +188,7 @@ public class SettingsMigrationService extends PlainMigrationService {
*/
private static boolean migratePoolSizeSetting(PropertyResource resource) {
Integer oldValue = resource.getInt("DataSource.poolSize");
if(oldValue == null || oldValue > 0) {
if (oldValue == null || oldValue > 0) {
return false;
}
resource.setValue("DataSource.poolSize", 10);