From 07a7f941e57567d14123e1d36192461a355f6099 Mon Sep 17 00:00:00 2001 From: Justin Clark-Casey (justincc) Date: Thu, 9 Oct 2014 00:57:10 +0100 Subject: minor: remove warning in BasicHttpAuthentication by commenting out unused remove_me parameter (which looks like it might still be potentially useful for logging) --- OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Framework') diff --git a/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs b/OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs index f33a045..d182a71 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; -- cgit v1.1