diff options
author | Justin Clarke Casey | 2008-03-29 23:07:48 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-29 23:07:48 +0000 |
commit | a6999f8a5d011d7540c04fa5434864fab53b2ef8 (patch) | |
tree | 53692c377933279899cf39812bca0725b25c0a04 /OpenSim/Grid | |
parent | * Tidy up 'show users' display (diff) | |
download | opensim-SC_OLD-a6999f8a5d011d7540c04fa5434864fab53b2ef8.zip opensim-SC_OLD-a6999f8a5d011d7540c04fa5434864fab53b2ef8.tar.gz opensim-SC_OLD-a6999f8a5d011d7540c04fa5434864fab53b2ef8.tar.bz2 opensim-SC_OLD-a6999f8a5d011d7540c04fa5434864fab53b2ef8.tar.xz |
* Refactor: Remove unused inventory methods, some of which weren't properly implemented anyway.
Diffstat (limited to 'OpenSim/Grid')
-rw-r--r-- | OpenSim/Grid/InventoryServer/GridInventoryService.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Grid/InventoryServer/GridInventoryService.cs b/OpenSim/Grid/InventoryServer/GridInventoryService.cs index cfe06e8..a003cd3 100644 --- a/OpenSim/Grid/InventoryServer/GridInventoryService.cs +++ b/OpenSim/Grid/InventoryServer/GridInventoryService.cs | |||
@@ -136,6 +136,17 @@ namespace OpenSim.Grid.InventoryServer | |||
136 | 136 | ||
137 | return invCollection; | 137 | return invCollection; |
138 | } | 138 | } |
139 | |||
140 | /// <summary> | ||
141 | /// Guid to UUID wrapper for same name IInventoryServices method | ||
142 | /// </summary> | ||
143 | /// <param name="rawUserID"></param> | ||
144 | /// <returns></returns> | ||
145 | public List<InventoryFolderBase> GetInventorySkeleton(Guid rawUserID) | ||
146 | { | ||
147 | LLUUID userID = new LLUUID(rawUserID); | ||
148 | return GetInventorySkeleton(userID); | ||
149 | } | ||
139 | 150 | ||
140 | public bool CreateUsersInventory(Guid rawUserID) | 151 | public bool CreateUsersInventory(Guid rawUserID) |
141 | { | 152 | { |