Skip to content

Commit

Permalink
fixed files form Time #11
Browse files Browse the repository at this point in the history
  • Loading branch information
tdurieux committed Mar 7, 2017
1 parent 040f6a5 commit 1548eb6
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions projects/Time/11/org/joda/time/tz/ZoneInfoCompiler.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,11 @@ public class ZoneInfoCompiler {

static Chronology cLenientISO;

static ThreadLocal<Boolean> cVerbose = new ThreadLocal<Boolean>();
static {
cVerbose.set(Boolean.FALSE);
}
static ThreadLocal<Boolean> cVerbose = new ThreadLocal<Boolean>() {
protected Boolean initialValue() {
return Boolean.FALSE;
}
};

/**
* Gets a flag indicating that verbose logging is required.
Expand Down

0 comments on commit 1548eb6

Please sign in to comment.