Skip to content

Commit f16ae08

Browse files
authored
Remove extra space
1 parent eb75773 commit f16ae08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singleton/src/main/java/com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private ThreadSafeLazyLoadedIvoryTower() {}
3838
/**
3939
* The instance gets created only when it is called for first time. Lazy-loading
4040
*/
41-
public static synchronized ThreadSafeLazyLoadedIvoryTower getInstance() {
41+
public static synchronized ThreadSafeLazyLoadedIvoryTower getInstance() {
4242

4343
if (instance == null) {
4444
instance = new ThreadSafeLazyLoadedIvoryTower();

0 commit comments

Comments
 (0)