diff options
author | lbsa71 | 2007-09-24 09:19:31 +0000 |
---|---|---|
committer | lbsa71 | 2007-09-24 09:19:31 +0000 |
commit | 00ddeebf574641fd83f154fb37f972bcf9e17abb (patch) | |
tree | fd5ead4a57a6f3fa2767d268302ac0f26830948e /OpenSim/Region/Communications/OGS1 | |
parent | * Now there's only one UserService (diff) | |
download | opensim-SC_OLD-00ddeebf574641fd83f154fb37f972bcf9e17abb.zip opensim-SC_OLD-00ddeebf574641fd83f154fb37f972bcf9e17abb.tar.gz opensim-SC_OLD-00ddeebf574641fd83f154fb37f972bcf9e17abb.tar.bz2 opensim-SC_OLD-00ddeebf574641fd83f154fb37f972bcf9e17abb.tar.xz |
* So, ok, maybe a bit harsh to explode on grid inventory calls.
Diffstat (limited to 'OpenSim/Region/Communications/OGS1')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index d5dbc46..9a113ff 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | |||
@@ -16,35 +16,35 @@ namespace OpenSim.Region.Communications.OGS1 | |||
16 | } | 16 | } |
17 | 17 | ||
18 | #region IInventoryServices Members | 18 | #region IInventoryServices Members |
19 | 19 | ||
20 | public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack) | 20 | public void RequestInventoryForUser(LLUUID userID, InventoryFolderInfo folderCallBack, InventoryItemInfo itemCallBack) |
21 | { | 21 | { |
22 | throw new Exception("The method or operation is not implemented."); | 22 | |
23 | } | 23 | } |
24 | 24 | ||
25 | public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder) | 25 | public void AddNewInventoryFolder(LLUUID userID, InventoryFolder folder) |
26 | { | 26 | { |
27 | throw new Exception("The method or operation is not implemented."); | 27 | |
28 | } | 28 | } |
29 | 29 | ||
30 | public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item) | 30 | public void AddNewInventoryItem(LLUUID userID, InventoryItemBase item) |
31 | { | 31 | { |
32 | throw new Exception("The method or operation is not implemented."); | 32 | |
33 | } | 33 | } |
34 | 34 | ||
35 | public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item) | 35 | public void DeleteInventoryItem(LLUUID userID, InventoryItemBase item) |
36 | { | 36 | { |
37 | throw new Exception("The method or operation is not implemented."); | 37 | |
38 | } | 38 | } |
39 | 39 | ||
40 | public void CreateNewUserInventory(LLUUID user) | 40 | public void CreateNewUserInventory(LLUUID user) |
41 | { | 41 | { |
42 | throw new Exception("The method or operation is not implemented."); | 42 | |
43 | } | 43 | } |
44 | 44 | ||
45 | public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID) | 45 | public List<InventoryFolderBase> RequestFirstLevelFolders(LLUUID userID) |
46 | { | 46 | { |
47 | throw new Exception("The method or operation is not implemented."); | 47 | return new List<InventoryFolderBase>(); |
48 | } | 48 | } |
49 | 49 | ||
50 | #endregion | 50 | #endregion |