aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Connectors/Inventory
diff options
context:
space:
mode:
authorMelanie2010-01-08 22:51:37 +0000
committerMelanie2010-01-08 22:51:37 +0000
commitbc68390b14ec582093dc322c2f45c32491924406 (patch)
treedf0c8c7909e40fc88be22dcee7d1d8156acd4bc2 /OpenSim/Services/Connectors/Inventory
parentAdds IClientAPI voids for GroupProposals. (diff)
downloadopensim-SC_OLD-bc68390b14ec582093dc322c2f45c32491924406.zip
opensim-SC_OLD-bc68390b14ec582093dc322c2f45c32491924406.tar.gz
opensim-SC_OLD-bc68390b14ec582093dc322c2f45c32491924406.tar.bz2
opensim-SC_OLD-bc68390b14ec582093dc322c2f45c32491924406.tar.xz
The first 2 handlers for the XInventory system.
Diffstat (limited to 'OpenSim/Services/Connectors/Inventory')
-rw-r--r--OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs b/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs
index 40acd6d..b9ccd7e 100644
--- a/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs
+++ b/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs
@@ -490,7 +490,7 @@ namespace OpenSim.Services.Connectors
490 return replyData; 490 return replyData;
491 } 491 }
492 492
493 InventoryFolderBase BuildFolder(Dictionary<string,object> data) 493 private InventoryFolderBase BuildFolder(Dictionary<string,object> data)
494 { 494 {
495 InventoryFolderBase folder = new InventoryFolderBase(); 495 InventoryFolderBase folder = new InventoryFolderBase();
496 496
@@ -504,7 +504,7 @@ namespace OpenSim.Services.Connectors
504 return folder; 504 return folder;
505 } 505 }
506 506
507 InventoryItemBase BuildItem(Dictionary<string,object> data) 507 private InventoryItemBase BuildItem(Dictionary<string,object> data)
508 { 508 {
509 InventoryItemBase item = new InventoryItemBase(); 509 InventoryItemBase item = new InventoryItemBase();
510 510