fix line endings

iar_mods
Dan Lake 2012-02-02 17:39:05 -08:00
parent 0ce9ad4a56
commit ee2b2aadc3
1 changed files with 7 additions and 7 deletions

View File

@ -447,16 +447,16 @@ namespace OpenSim.Framework
public string GetOtherSetting(string key) public string GetOtherSetting(string key)
{ {
string val; string val;
string keylower = key.ToLower(); string keylower = key.ToLower();
if (m_otherSettings.TryGetValue(keylower, out val)) if (m_otherSettings.TryGetValue(keylower, out val))
return val; return val;
m_log.DebugFormat("[RegionInfo] Could not locate value for parameter {0}", key); m_log.DebugFormat("[RegionInfo] Could not locate value for parameter {0}", key);
return null; return null;
} }
public void SetOtherSetting(string key, string value) public void SetOtherSetting(string key, string value)
{ {
string keylower = key.ToLower(); string keylower = key.ToLower();
m_otherSettings[keylower] = value; m_otherSettings[keylower] = value;
} }
@ -621,7 +621,7 @@ namespace OpenSim.Framework
// Multi-tenancy // Multi-tenancy
// //
ScopeID = new UUID(config.GetString("ScopeID", UUID.Zero.ToString())); ScopeID = new UUID(config.GetString("ScopeID", UUID.Zero.ToString()));
allKeys.Remove("ScopeID"); allKeys.Remove("ScopeID");
foreach (String s in allKeys) foreach (String s in allKeys)
{ {