From 924026d01c1dd25218e9a4296eb27640091405f3 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Sun, 18 Nov 2007 15:14:37 +0000 Subject: cleaned up some mono compiler warnings --- OpenSim/Region/Environment/Modules/XMLRPCModule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/Environment/Modules/XMLRPCModule.cs') diff --git a/OpenSim/Region/Environment/Modules/XMLRPCModule.cs b/OpenSim/Region/Environment/Modules/XMLRPCModule.cs index 434c92f..1223f5c 100644 --- a/OpenSim/Region/Environment/Modules/XMLRPCModule.cs +++ b/OpenSim/Region/Environment/Modules/XMLRPCModule.cs @@ -153,7 +153,7 @@ namespace OpenSim.Region.Environment.Modules } } - if ((channel == null) || (channel.Equals(LLUUID.Zero))) + if ((channel.Equals(null)) || (channel.Equals(LLUUID.Zero))) { channel = LLUUID.Random(); RPCChannelInfo rpcChanInfo = new RPCChannelInfo(localID, itemID, channel); -- cgit v1.1