aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs
diff options
context:
space:
mode:
authorTeravus Ovares2008-04-17 19:42:54 +0000
committerTeravus Ovares2008-04-17 19:42:54 +0000
commitdd4deebbcbe07cccf8ce700c29c9884f1f414c85 (patch)
treee5df5e61c84e800d5d38db3b72209d1bc2764959 /OpenSim/Framework/Communications/Cache/CachedUserInfo.cs
parent* Acks the first UseCircuitCode packet (diff)
downloadopensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.zip
opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.tar.gz
opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.tar.bz2
opensim-SC_OLD-dd4deebbcbe07cccf8ce700c29c9884f1f414c85.tar.xz
* Re-Fixed caps
* This fixes chi11ken's/OpenViewer's libsl cap issue.
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Cache/CachedUserInfo.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs
index 9f202ff..ec5717e 100644
--- a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs
+++ b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs
@@ -251,11 +251,6 @@ namespace OpenSim.Framework.Communications.Cache
251 ItemReceive(userID, itemInfo); 251 ItemReceive(userID, itemInfo);
252 m_commsManager.InventoryService.AddNewInventoryItem(userID, itemInfo); 252 m_commsManager.InventoryService.AddNewInventoryItem(userID, itemInfo);
253 } 253 }
254 else
255 {
256 m_log.Error("[UNABLE TO UPLOAD]: ");
257 }
258
259 } 254 }
260 255
261 /// <summary> 256 /// <summary>
@@ -269,10 +264,6 @@ namespace OpenSim.Framework.Communications.Cache
269 { 264 {
270 m_commsManager.InventoryService.AddNewInventoryItem(userID, itemInfo); 265 m_commsManager.InventoryService.AddNewInventoryItem(userID, itemInfo);
271 } 266 }
272 else
273 {
274 m_log.Error("[UNABLE TO UPDATE]: ");
275 }
276 } 267 }
277 268
278 /// <summary> 269 /// <summary>
@@ -292,10 +283,6 @@ namespace OpenSim.Framework.Communications.Cache
292 m_commsManager.InventoryService.DeleteInventoryItem(userID, item); 283 m_commsManager.InventoryService.DeleteInventoryItem(userID, item);
293 } 284 }
294 } 285 }
295 else
296 {
297 m_log.Error("[UNABLE TO DELETE]: ");
298 }
299 286
300 return result; 287 return result;
301 } 288 }