mirror of
https://github.com/opensim/opensim.git
synced 2026-08-12 20:55:43 +08:00
refactor: replace verbose checks with String.IsNullOrEmpty where applicable.
Thanks to Kira for this patch from http://opensimulator.org/mantis/view.php?id=6845
This commit is contained in:
@@ -822,11 +822,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);
|
||||
}
|
||||
@@ -862,7 +862,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);
|
||||
}
|
||||
@@ -1047,7 +1047,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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user