aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/XMLRPCModule.cs
diff options
context:
space:
mode:
authorJeff Ames2007-11-18 15:14:37 +0000
committerJeff Ames2007-11-18 15:14:37 +0000
commit924026d01c1dd25218e9a4296eb27640091405f3 (patch)
tree7d9e8fcb28b0ce6090cc42c4754d5673bb2853c2 /OpenSim/Region/Environment/Modules/XMLRPCModule.cs
parentfirst stab at implementation of CopyInventoryItem (diff)
downloadopensim-SC_OLD-924026d01c1dd25218e9a4296eb27640091405f3.zip
opensim-SC_OLD-924026d01c1dd25218e9a4296eb27640091405f3.tar.gz
opensim-SC_OLD-924026d01c1dd25218e9a4296eb27640091405f3.tar.bz2
opensim-SC_OLD-924026d01c1dd25218e9a4296eb27640091405f3.tar.xz
cleaned up some mono compiler warnings
Diffstat (limited to 'OpenSim/Region/Environment/Modules/XMLRPCModule.cs')
-rw-r--r--OpenSim/Region/Environment/Modules/XMLRPCModule.cs2
1 files changed, 1 insertions, 1 deletions
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
153 } 153 }
154 } 154 }
155 155
156 if ((channel == null) || (channel.Equals(LLUUID.Zero))) 156 if ((channel.Equals(null)) || (channel.Equals(LLUUID.Zero)))
157 { 157 {
158 channel = LLUUID.Random(); 158 channel = LLUUID.Random();
159 RPCChannelInfo rpcChanInfo = new RPCChannelInfo(localID, itemID, channel); 159 RPCChannelInfo rpcChanInfo = new RPCChannelInfo(localID, itemID, channel);