From 00ddeebf574641fd83f154fb37f972bcf9e17abb Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 24 Sep 2007 09:19:31 +0000 Subject: [PATCH] * So, ok, maybe a bit harsh to explode on grid inventory calls. --- .../Communications/Local/CommunicationsLocal.cs | 2 -- .../Communications/OGS1/OGS1InventoryService.cs | 14 +++++++------- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index 4ddd9ea9bc..eed21a4f4a 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs @@ -58,12 +58,10 @@ namespace OpenSim.Region.Communications.Local LocalInventoryService inventoryService = new LocalInventoryService(); inventoryService.AddPlugin(m_settings.InventoryPlugin); - m_inventoryService = inventoryService; LocalUserServices userService = new LocalUserServices(this, serversInfo); userService.AddPlugin(m_settings.UserDatabasePlugin); - m_userService = userService; InstanceServices = new LocalBackEndServices(); diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index d5dbc46433..9a113ffb6e 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs @@ -16,35 +16,35 @@ namespace OpenSim.Region.Communications.OGS1 } #region IInventoryServices Members - + public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack) { - throw new Exception("The method or operation is not implemented."); + } public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder) { - throw new Exception("The method or operation is not implemented."); + } public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item) { - throw new Exception("The method or operation is not implemented."); + } public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item) { - throw new Exception("The method or operation is not implemented."); + } public void CreateNewUserInventory(LLUUID user) { - throw new Exception("The method or operation is not implemented."); + } public List RequestFirstLevelFolders(LLUUID userID) { - throw new Exception("The method or operation is not implemented."); + return new List(); } #endregion