Bug 36787

Summary: org.apache.log4j.lf5.util.DateFormatManager.setTimeZone assignment error
Product: Log4j - Now in Jira Reporter: Curtis Light <cmlight>
Component: OtherAssignee: log4j-dev <log4j-dev>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: 1.2   
Target Milestone: ---   
Hardware: Other   
OS: other   

Description Curtis Light 2005-09-23 20:49:21 UTC
The assignment has no effect.

Change: 
  public synchronized void setTimeZone(TimeZone timeZone) {
    timeZone = timeZone;
    configure();
  }

To:
   public synchronized void setTimeZone(TimeZone timeZone) {
    this._timeZone = timeZone;
    configure();
  }

In version 1.2.12
Comment 1 Curt Arnold 2006-08-01 20:03:27 UTC
Fixed in rev 427704.
Comment 2 pranay 2007-05-18 07:20:53 UTC
dsf