The setLogger method of ThreadSafeComponentHandler does not check whether m_factory is null before setting the logger of the factory:
public void setLogger(Logger log)
{
m_factory.setLogger(log);
super.setLogger(log);
}
This patch changes that to:
public void setLogger(Logger log)
{
if ( this.m_factory != null )
{
m_factory.setLogger(log);
}
super.setLogger(log);
}
This bug breaks Cocoon2.
/LS
ch.diff
Description: Binary data
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
