DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26555>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26555 typo in org.apache.log4j.lf5.util.DateFormatManager Summary: typo in org.apache.log4j.lf5.util.DateFormatManager Product: Log4j Version: unspecified Platform: All OS/Version: All Status: NEW Severity: Normal Priority: Other Component: Other AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] The constructor show below does not set _timeZone. public DateFormatManager(TimeZone timeZone) { super(); timeZone = timeZone; configure(); } It probably was intended to be public DateFormatManager(TimeZone timeZone) { super(); _timeZone = timeZone; configure(); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
