diff --git a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs index f33a045917..d182a717ff 100644 --- a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs +++ b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs @@ -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(config, "HttpAuthUsername", new string[] { "Network", section }, string.Empty); m_Password = Util.GetConfigVarFromSections(config, "HttpAuthPassword", new string[] { "Network", section }, string.Empty); string str = m_Username + ":" + m_Password;