diff options
author | Dr Scofield | 2009-04-22 09:42:44 +0000 |
---|---|---|
committer | Dr Scofield | 2009-04-22 09:42:44 +0000 |
commit | 458f7eb9b38609d02980afe5a6ee88d19c7dd7f8 (patch) | |
tree | b8d2b6c140ca373ca5604f7087541f74185ac77c /OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups | |
parent | * update example to reflect optional Well known hostname. (diff) | |
download | opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.zip opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.tar.gz opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.tar.bz2 opensim-SC_OLD-458f7eb9b38609d02980afe5a6ee88d19c7dd7f8.tar.xz |
cleaning up, fixing warnings
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups')
-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) |