Shadowed logger
---------------
Key: RCP-221
URL: http://opensource.atlassian.com/projects/spring/browse/RCP-221
Project: Spring Framework Rich Client Project
Type: Bug
Components: Application Framework
Reporter: Geoffrey
Assigned to: Oliver Hutchison
Priority: Trivial
The logger in AbstractControlFactory shadows the one in ApplicationServicesAccessor:
public abstract class AbstractControlFactory extends ApplicationServicesAccessor implements ControlFactory {
protected Log logger = LogFactory.getLog(getClass());
//...
}
public class ApplicationServicesAccessor {
protected final Log logger = LogFactory.getLog(getClass());
//...
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/spring/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|