mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
* So, ok, maybe a bit harsh to explode on grid inventory calls.
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID)
|
||||
{
|
||||
throw new Exception("The method or operation is not implemented.");
|
||||
return new List<InventoryFolderBase>();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
Reference in New Issue
Block a user