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