diff options
author | Justin Clarke Casey | 2009-04-29 18:11:41 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-04-29 18:11:41 +0000 |
commit | c320dca2db5c841976f5a36dab47cd3a8250c825 (patch) | |
tree | 4f52a315e0b3737aecd84cfc4f9a402fe9804a99 /OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | |
parent | * Make scene.oar the default oar target rather than scene.oar.tar.gz, in an a... (diff) | |
download | opensim-SC_OLD-c320dca2db5c841976f5a36dab47cd3a8250c825.zip opensim-SC_OLD-c320dca2db5c841976f5a36dab47cd3a8250c825.tar.gz opensim-SC_OLD-c320dca2db5c841976f5a36dab47cd3a8250c825.tar.bz2 opensim-SC_OLD-c320dca2db5c841976f5a36dab47cd3a8250c825.tar.xz |
* minor: remove some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs')
-rw-r--r-- | OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs index 27cffd6..23dd52d 100644 --- a/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs +++ b/OpenSim/Region/OptionalModules/Avatar/XmlRpcGroups/XmlRpcGroupData.cs | |||
@@ -228,7 +228,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups | |||
228 | public GroupRecord GetGroupRecord(UUID GroupID, string GroupName) | 228 | public GroupRecord GetGroupRecord(UUID GroupID, string GroupName) |
229 | { | 229 | { |
230 | Hashtable param = new Hashtable(); | 230 | Hashtable param = new Hashtable(); |
231 | if ((GroupID != null) && (GroupID != UUID.Zero)) | 231 | if (GroupID != UUID.Zero) |
232 | { | 232 | { |
233 | param["GroupID"] = GroupID.ToString(); | 233 | param["GroupID"] = GroupID.ToString(); |
234 | } | 234 | } |