minor: remove mono compiler warning

bulletsim
Justin Clark-Casey (justincc) 2011-08-22 23:10:43 +01:00
parent 940a248c3d
commit 138a5e04b8
1 changed files with 1 additions and 3 deletions
OpenSim/Services/AuthenticationService

View File

@ -42,15 +42,13 @@ namespace OpenSim.Services.AuthenticationService
public class WebkeyOrPasswordAuthenticationService : AuthenticationServiceBase, IAuthenticationService public class WebkeyOrPasswordAuthenticationService : AuthenticationServiceBase, IAuthenticationService
{ {
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);
} }