* minor: remove some mono compiler warnings

This commit is contained in:
Justin Clarke Casey
2009-04-29 18:11:41 +00:00
parent 23aa85b75d
commit c320dca2db
6 changed files with 6 additions and 13 deletions

View File

@@ -228,7 +228,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.XmlRpcGroups
public GroupRecord GetGroupRecord(UUID GroupID, string GroupName)
{
Hashtable param = new Hashtable();
if ((GroupID != null) && (GroupID != UUID.Zero))
if (GroupID != UUID.Zero)
{
param["GroupID"] = GroupID.ToString();
}