From 1548eb69336b08bcce316f605cb7b3ad5a9e17c7 Mon Sep 17 00:00:00 2001 From: tdurieux Date: Tue, 7 Mar 2017 13:13:54 +0100 Subject: [PATCH] fixed files form Time #11 --- projects/Time/11/org/joda/time/tz/ZoneInfoCompiler.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/projects/Time/11/org/joda/time/tz/ZoneInfoCompiler.java b/projects/Time/11/org/joda/time/tz/ZoneInfoCompiler.java index 6efe071..64da5ea 100644 --- a/projects/Time/11/org/joda/time/tz/ZoneInfoCompiler.java +++ b/projects/Time/11/org/joda/time/tz/ZoneInfoCompiler.java @@ -65,10 +65,11 @@ public class ZoneInfoCompiler { static Chronology cLenientISO; - static ThreadLocal cVerbose = new ThreadLocal(); - static { - cVerbose.set(Boolean.FALSE); - } + static ThreadLocal cVerbose = new ThreadLocal() { + protected Boolean initialValue() { + return Boolean.FALSE; + } + }; /** * Gets a flag indicating that verbose logging is required.