mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
== string.Empty is .Lenght == 0
This commit is contained in:
@@ -114,7 +114,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
|
||||
string serviceDll = m_Config.GetString("LocalServiceModule",
|
||||
String.Empty);
|
||||
|
||||
if (serviceDll == String.Empty)
|
||||
if (serviceDll.Length == 0)
|
||||
{
|
||||
m_log.Error("[FreeSwitchVoice]: No LocalServiceModule named in section FreeSwitchVoice. Not starting.");
|
||||
return;
|
||||
|
||||
@@ -1303,7 +1303,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.VivoxVoice
|
||||
/// </summary>
|
||||
private bool XmlFind(XmlElement root, string tag, int nth, out string result)
|
||||
{
|
||||
if (root == null || tag == null || tag == String.Empty)
|
||||
if (root == null || string.IsNullOrEmpty(tag))
|
||||
{
|
||||
result = String.Empty;
|
||||
return false;
|
||||
@@ -1314,7 +1314,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.VivoxVoice
|
||||
private bool XmlFind(XmlElement root, string tag, out string result)
|
||||
{
|
||||
int nth = 0;
|
||||
if (root == null || tag == null || tag == String.Empty)
|
||||
if (root == null || string.IsNullOrEmpty(tag))
|
||||
{
|
||||
result = String.Empty;
|
||||
return false;
|
||||
|
||||
@@ -77,7 +77,7 @@ namespace OpenSim.Region.OptionalModules.Framework.Monitoring
|
||||
IConfig etcdConfig = source.Configs["Etcd"];
|
||||
|
||||
string etcdUrls = etcdConfig.GetString("EtcdUrls", String.Empty);
|
||||
if (etcdUrls == String.Empty)
|
||||
if (etcdUrls.Length == 0)
|
||||
return;
|
||||
|
||||
m_etcdBasePath = etcdConfig.GetString("BasePath", m_etcdBasePath);
|
||||
|
||||
@@ -671,7 +671,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore
|
||||
|
||||
string pkey = "";
|
||||
foreach (string k in path)
|
||||
pkey = (pkey == "") ? k : (k + "." + pkey);
|
||||
pkey = (pkey.Length == 0) ? k : (k + "." + pkey);
|
||||
|
||||
return pkey;
|
||||
}
|
||||
|
||||
@@ -73,7 +73,7 @@ namespace OpenSim.Region.OptionalModules.Scripting.XmlRpcGridRouterModule
|
||||
"XmlRpcRouterModule") == "XmlRpcGridRouterModule")
|
||||
{
|
||||
m_ServerURI = startupConfig.GetString("XmlRpcHubURI", String.Empty);
|
||||
if (m_ServerURI == String.Empty)
|
||||
if (m_ServerURI.Length == 0)
|
||||
{
|
||||
m_log.Error("[XMLRPC GRID ROUTER] Module configured but no URI given. Disabling");
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user