diff options
author | Justin Clark-Casey (justincc) | 2014-10-09 00:57:10 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-11-25 23:21:37 +0000 |
commit | 07a7f941e57567d14123e1d36192461a355f6099 (patch) | |
tree | e4617730536cfc0e8969f87773571f0f5998ec86 /OpenSim | |
parent | extend TestClientThrottleRegionLimited for 2 clients after testing 1. Rename... (diff) | |
download | opensim-SC-07a7f941e57567d14123e1d36192461a355f6099.zip opensim-SC-07a7f941e57567d14123e1d36192461a355f6099.tar.gz opensim-SC-07a7f941e57567d14123e1d36192461a355f6099.tar.bz2 opensim-SC-07a7f941e57567d14123e1d36192461a355f6099.tar.xz |
minor: remove warning in BasicHttpAuthentication by commenting out unused remove_me parameter (which looks like it might still be potentially useful for logging)
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/ServiceAuth/BasicHttpAuthentication.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 | |||
15 | private string m_Username, m_Password; | 15 | private string m_Username, m_Password; |
16 | private string m_CredentialsB64; | 16 | private string m_CredentialsB64; |
17 | 17 | ||
18 | private string remove_me; | 18 | // private string remove_me; |
19 | 19 | ||
20 | public string Credentials | 20 | public string Credentials |
21 | { | 21 | { |
@@ -24,7 +24,7 @@ namespace OpenSim.Framework.ServiceAuth | |||
24 | 24 | ||
25 | public BasicHttpAuthentication(IConfigSource config, string section) | 25 | public BasicHttpAuthentication(IConfigSource config, string section) |
26 | { | 26 | { |
27 | remove_me = section; | 27 | // remove_me = section; |
28 | m_Username = Util.GetConfigVarFromSections<string>(config, "HttpAuthUsername", new string[] { "Network", section }, string.Empty); | 28 | m_Username = Util.GetConfigVarFromSections<string>(config, "HttpAuthUsername", new string[] { "Network", section }, string.Empty); |
29 | m_Password = Util.GetConfigVarFromSections<string>(config, "HttpAuthPassword", new string[] { "Network", section }, string.Empty); | 29 | m_Password = Util.GetConfigVarFromSections<string>(config, "HttpAuthPassword", new string[] { "Network", section }, string.Empty); |
30 | string str = m_Username + ":" + m_Password; | 30 | string str = m_Username + ":" + m_Password; |