aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-04 19:09:56 +0000
committerJustin Clarke Casey2008-04-04 19:09:56 +0000
commit57afbdbdbdfea90d5e27ea37ced2a72219cce4e9 (patch)
tree42dc3bfed6e5b0bef52aace3a41677faa8412db9 /OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs
parentmake AssetBase use Properties instead of fields. This probably (diff)
downloadopensim-SC_OLD-57afbdbdbdfea90d5e27ea37ced2a72219cce4e9.zip
opensim-SC_OLD-57afbdbdbdfea90d5e27ea37ced2a72219cce4e9.tar.gz
opensim-SC_OLD-57afbdbdbdfea90d5e27ea37ced2a72219cce4e9.tar.bz2
opensim-SC_OLD-57afbdbdbdfea90d5e27ea37ced2a72219cce4e9.tar.xz
From: Kurt Taylor <krtaylor@us.ibm.com>
Patch to remove commented NotImpemented calls from within implemented script functions
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs
index 0879357..16da516 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.Inventory.cs
@@ -384,7 +384,7 @@ namespace OpenSim.Region.Environment.Scenes
384 else 384 else
385 { 385 {
386 m_log.ErrorFormat( 386 m_log.ErrorFormat(
387 "[PRIMINVENTORY]: " + 387 "[PRIM INVENTORY]: " +
388 "Tried to remove item ID {0} from prim {1}, {2} but the item does not exist in this inventory", 388 "Tried to remove item ID {0} from prim {1}, {2} but the item does not exist in this inventory",
389 itemID, Name, UUID); 389 itemID, Name, UUID);
390 } 390 }
@@ -400,6 +400,10 @@ namespace OpenSim.Region.Environment.Scenes
400 /// <param name="localID"></param> 400 /// <param name="localID"></param>
401 public bool GetInventoryFileName(IClientAPI client, uint localID) 401 public bool GetInventoryFileName(IClientAPI client, uint localID)
402 { 402 {
403// m_log.DebugFormat(
404// "[PRIM INVENTORY]: Received request from client {0} for inventory file name of {1}, {2}",
405// client.AgentId, Name, UUID);
406
403 if (m_inventorySerial > 0) 407 if (m_inventorySerial > 0)
404 { 408 {
405 client.SendTaskInventory(m_uuid, (short)m_inventorySerial, 409 client.SendTaskInventory(m_uuid, (short)m_inventorySerial,
@@ -455,8 +459,8 @@ namespace OpenSim.Region.Environment.Scenes
455 459
456 fileData = Helpers.StringToField(invString.BuildString); 460 fileData = Helpers.StringToField(invString.BuildString);
457 461
458 // m_log.InfoFormat( 462// m_log.DebugFormat(
459 // "[PRIMINVENTORY]: RequestInventoryFile fileData: {0}", Helpers.FieldToUTF8String(fileData)); 463// "[PRIM INVENTORY]: RequestInventoryFile fileData: {0}", Helpers.FieldToUTF8String(fileData));
460 464
461 if (fileData.Length > 2) 465 if (fileData.Length > 2)
462 { 466 {