Fix remaining Checkstyle errors for Singleton

This commit is contained in:
Ilkka Seppälä 2019-10-31 20:01:39 +02:00
parent 3b1a28149b
commit 55b0341c8d
2 changed files with 4 additions and 2 deletions

View File

@ -41,7 +41,8 @@ public final class InitializingOnDemandHolderIdiom {
/** /**
* Private constructor. * Private constructor.
*/ */
private InitializingOnDemandHolderIdiom() {} private InitializingOnDemandHolderIdiom() {
}
/** /**
* Sigleton instance. * Sigleton instance.

View File

@ -31,7 +31,8 @@ public final class IvoryTower {
/** /**
* Private constructor so nobody can instantiate the class. * Private constructor so nobody can instantiate the class.
*/ */
private IvoryTower() {} private IvoryTower() {
}
/** /**
* Static to class instance of the class. * Static to class instance of the class.