From 5d970438bfdacae104146ba1399f4c2b453b60e4 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 12 Oct 2015 05:22:09 -0300 Subject: [PATCH] Update comment --- .../com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/singleton/src/main/java/com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java b/singleton/src/main/java/com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java index f9b62e798..c50c99e65 100644 --- a/singleton/src/main/java/com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java +++ b/singleton/src/main/java/com/iluwatar/singleton/ThreadSafeLazyLoadedIvoryTower.java @@ -4,6 +4,8 @@ package com.iluwatar.singleton; * Thread-safe Singleton class. * The instance is lazily initialized and thus needs synchronization * mechanism. + * + * Note: if created by reflection then a singleton will not be created but multiple options in the same classloader */ public class ThreadSafeLazyLoadedIvoryTower {