minor: remove mono compiler warning
parent
940a248c3d
commit
138a5e04b8
|
@ -43,14 +43,12 @@ namespace OpenSim.Services.AuthenticationService
|
||||||
{
|
{
|
||||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
private IConfigSource m_config;
|
|
||||||
private Dictionary<string, IAuthenticationService> m_svcChecks
|
private Dictionary<string, IAuthenticationService> m_svcChecks
|
||||||
= new Dictionary<string, IAuthenticationService>();
|
= new Dictionary<string, IAuthenticationService>();
|
||||||
|
|
||||||
public WebkeyOrPasswordAuthenticationService(IConfigSource config)
|
public WebkeyOrPasswordAuthenticationService(IConfigSource config)
|
||||||
: base(config)
|
: base(config)
|
||||||
{
|
{
|
||||||
this.m_config = config;
|
|
||||||
m_svcChecks["web_login_key"] = new WebkeyAuthenticationService(config);
|
m_svcChecks["web_login_key"] = new WebkeyAuthenticationService(config);
|
||||||
m_svcChecks["password"] = new PasswordAuthenticationService(config);
|
m_svcChecks["password"] = new PasswordAuthenticationService(config);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue