mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
Merge branch 'master' into careminster
Conflicts: .gitignore OpenSim/Region/CoreModules/Scripting/HttpRequest/ScriptsHttpRequests.cs OpenSim/Region/CoreModules/World/Land/LandManagementModule.cs prebuild.xml runprebuild.bat
This commit is contained in:
@@ -461,7 +461,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat
|
||||
|
||||
string result = instr;
|
||||
|
||||
if (result == null || result.Length == 0)
|
||||
if (string.IsNullOrEmpty(result))
|
||||
return result;
|
||||
|
||||
// Repeatedly scan the string until all possible
|
||||
|
||||
@@ -827,11 +827,11 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.VivoxVoice
|
||||
{
|
||||
string requrl = String.Format(m_vivoxChannelPath, m_vivoxServer, "create", channelId, m_authToken);
|
||||
|
||||
if (parent != null && parent != String.Empty)
|
||||
if (!string.IsNullOrEmpty(parent))
|
||||
{
|
||||
requrl = String.Format("{0}&chan_parent={1}", requrl, parent);
|
||||
}
|
||||
if (description != null && description != String.Empty)
|
||||
if (!string.IsNullOrEmpty(description))
|
||||
{
|
||||
requrl = String.Format("{0}&chan_desc={1}", requrl, description);
|
||||
}
|
||||
@@ -867,7 +867,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.VivoxVoice
|
||||
// requrl = String.Format("{0}&chan_parent={1}", requrl, parent);
|
||||
// }
|
||||
|
||||
if (description != null && description != String.Empty)
|
||||
if (!string.IsNullOrEmpty(description))
|
||||
{
|
||||
requrl = String.Format("{0}&chan_desc={1}", requrl, description);
|
||||
}
|
||||
@@ -1053,7 +1053,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.VivoxVoice
|
||||
private XmlElement VivoxDeleteChannel(string parent, string channelid)
|
||||
{
|
||||
string requrl = String.Format(m_vivoxChannelDel, m_vivoxServer, "delete", channelid, m_authToken);
|
||||
if (parent != null && parent != String.Empty)
|
||||
if (!string.IsNullOrEmpty(parent))
|
||||
{
|
||||
requrl = String.Format("{0}&chan_parent={1}", requrl, parent);
|
||||
}
|
||||
|
||||
@@ -212,8 +212,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
|
||||
m_log.InfoFormat("[SIMIAN-GROUPS-CONNECTOR]: Initializing {0}", this.Name);
|
||||
|
||||
m_groupsServerURI = groupsConfig.GetString("GroupsServerURI", string.Empty);
|
||||
if ((m_groupsServerURI == null) ||
|
||||
(m_groupsServerURI == string.Empty))
|
||||
if (string.IsNullOrEmpty(m_groupsServerURI))
|
||||
{
|
||||
m_log.ErrorFormat("Please specify a valid Simian Server for GroupsServerURI in OpenSim.ini, [Groups]");
|
||||
m_connectorEnabled = false;
|
||||
@@ -438,7 +437,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
|
||||
return null;
|
||||
}
|
||||
}
|
||||
else if ((groupName != null) && (groupName != string.Empty))
|
||||
else if (!string.IsNullOrEmpty(groupName))
|
||||
{
|
||||
if (!SimianGetFirstGenericEntry("Group", groupName, out groupID, out GroupInfoMap))
|
||||
{
|
||||
|
||||
@@ -168,8 +168,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
|
||||
m_log.DebugFormat("[XMLRPC-GROUPS-CONNECTOR]: Initializing {0}", this.Name);
|
||||
|
||||
m_groupsServerURI = groupsConfig.GetString("GroupsServerURI", string.Empty);
|
||||
if ((m_groupsServerURI == null) ||
|
||||
(m_groupsServerURI == string.Empty))
|
||||
if (string.IsNullOrEmpty(m_groupsServerURI))
|
||||
{
|
||||
m_log.ErrorFormat("Please specify a valid URL for GroupsServerURI in OpenSim.ini, [Groups]");
|
||||
m_connectorEnabled = false;
|
||||
@@ -354,7 +353,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
|
||||
{
|
||||
param["GroupID"] = GroupID.ToString();
|
||||
}
|
||||
if ((GroupName != null) && (GroupName != string.Empty))
|
||||
if (!string.IsNullOrEmpty(GroupName))
|
||||
{
|
||||
param["Name"] = GroupName.ToString();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user