We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb75773 commit f16ae08Copy full SHA for f16ae08
1 file changed
singleton/src/main/java/com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java
@@ -38,7 +38,7 @@ private ThreadSafeLazyLoadedIvoryTower() {}
38
/**
39
* The instance gets created only when it is called for first time. Lazy-loading
40
*/
41
- public static synchronized ThreadSafeLazyLoadedIvoryTower getInstance() {
+ public static synchronized ThreadSafeLazyLoadedIvoryTower getInstance() {
42
43
if (instance == null) {
44
instance = new ThreadSafeLazyLoadedIvoryTower();
0 commit comments