minor: remove warning in BasicHttpAuthentication by commenting out unused remove_me parameter (which looks like it might still be potentially useful for logging)

ghosts
Justin Clark-Casey (justincc) 2014-10-09 00:57:10 +01:00
parent d69ab1e037
commit 235eb92c0e
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ namespace OpenSim.Framework.ServiceAuth
private string m_Username, m_Password;
private string m_CredentialsB64;
private string remove_me;
// private string remove_me;
public string Credentials
{
@ -24,7 +24,7 @@ namespace OpenSim.Framework.ServiceAuth
public BasicHttpAuthentication(IConfigSource config, string section)
{
remove_me = section;
// remove_me = section;
m_Username = Util.GetConfigVarFromSections<string>(config, "HttpAuthUsername", new string[] { "Network", section }, string.Empty);
m_Password = Util.GetConfigVarFromSections<string>(config, "HttpAuthPassword", new string[] { "Network", section }, string.Empty);
string str = m_Username + ":" + m_Password;