From 0d068a35d802731ac52f226ee6350251418059d4 Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Mon, 12 Oct 2015 05:21:33 -0300 Subject: [PATCH] Update comment --- .../iluwatar/singleton/LazyLoadedSingletonThreadSafetyTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/singleton/src/test/java/com/iluwatar/singleton/LazyLoadedSingletonThreadSafetyTest.java b/singleton/src/test/java/com/iluwatar/singleton/LazyLoadedSingletonThreadSafetyTest.java index 45dde2c6f..0968cefd3 100644 --- a/singleton/src/test/java/com/iluwatar/singleton/LazyLoadedSingletonThreadSafetyTest.java +++ b/singleton/src/test/java/com/iluwatar/singleton/LazyLoadedSingletonThreadSafetyTest.java @@ -13,7 +13,6 @@ import static org.junit.Assert.assertEquals; * * The first proves that multiple calls to the singleton getInstance object are the same when called in the SAME thread. * The second proves that multiple calls to the singleton getInstance object are the same when called in the DIFFERENT thread. - * The third proves that there is a hole if the singleton is created reflectively * */ public class LazyLoadedSingletonThreadSafetyTest {