Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
1.2.10
-
None
-
None
Description
This code:
protected virtual void OnConfigurationChanged(EventArgs e)
{
if (e == null)
LoggerRepositoryConfigurationChangedEventHandler handler = m_configurationChangedEvent;
if (handler != null)
{ handler(this, EventArgs.Empty); }
}
should be changed to match the other event handlers in the class:
protected virtual void OnConfigurationChanged(EventArgs e)
{
if (e == null)
{ e = EventArgs.Empty; }
LoggerRepositoryConfigurationChangedEventHandler handler = m_configurationChangedEvent;
if (handler != null)
}