From 235eb92c0ec40952b260e359ba5ee5dc5603d7d1 Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Thu, 9 Oct 2014 00:57:10 +0100 Subject: [PATCH] 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(-) 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;