Remove extra space

This commit is contained in:
Alexandru Somai 2016-08-26 12:46:30 +03:00 committed by GitHub
parent eb75773891
commit f16ae08bdf

View File

@ -38,7 +38,7 @@ public final class ThreadSafeLazyLoadedIvoryTower {
/**
* The instance gets created only when it is called for first time. Lazy-loading
*/
public static synchronized ThreadSafeLazyLoadedIvoryTower getInstance() {
public static synchronized ThreadSafeLazyLoadedIvoryTower getInstance() {
if (instance == null) {
instance = new ThreadSafeLazyLoadedIvoryTower();