diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs index 3a728da..ada6cfd 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | |||
@@ -218,7 +218,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
218 | public GroupRecord GetGroupRecord(UUID GroupID, string GroupName) | 218 | public GroupRecord GetGroupRecord(UUID GroupID, string GroupName) |
219 | { | 219 | { |
220 | Hashtable param = new Hashtable(); | 220 | Hashtable param = new Hashtable(); |
221 | if ((GroupID != null) && (GroupID != UUID.Zero)) | 221 | if (GroupID != UUID.Zero) |
222 | { | 222 | { |
223 | param["GroupID"] = GroupID.ToString(); | 223 | param["GroupID"] = GroupID.ToString(); |
224 | } | 224 | } |
@@ -793,7 +793,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
793 | { | 793 | { |
794 | m_log.ErrorFormat("[GROUPDATA] Key: {0}", key); | 794 | m_log.ErrorFormat("[GROUPDATA] Key: {0}", key); |
795 | 795 | ||
796 | object o = respData[key]; | 796 | // object o = respData[key]; |
797 | 797 | ||
798 | string[] lines = respData[key].ToString().Split(new char[] { '\n' }); | 798 | string[] lines = respData[key].ToString().Split(new char[] { '\n' }); |
799 | foreach (string line in lines) | 799 | foreach (string line in lines) |