diff options
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/CachedUserInfo.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs index acdb6db..99dc45a 100644 --- a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs +++ b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | |||
@@ -101,7 +101,7 @@ namespace OpenSim.Framework.Communications.Caches | |||
101 | if ((userID == this.UserProfile.UUID) && (this.RootFolder != null)) | 101 | if ((userID == this.UserProfile.UUID) && (this.RootFolder != null)) |
102 | { | 102 | { |
103 | this.ItemReceive(userID, itemInfo); | 103 | this.ItemReceive(userID, itemInfo); |
104 | this.m_parentCommsManager.InventoryServer.AddNewInventoryItem(userID, itemInfo); | 104 | this.m_parentCommsManager.InventoryService.AddNewInventoryItem(userID, itemInfo); |
105 | } | 105 | } |
106 | } | 106 | } |
107 | 107 | ||
@@ -109,7 +109,7 @@ namespace OpenSim.Framework.Communications.Caches | |||
109 | { | 109 | { |
110 | if ((userID == this.UserProfile.UUID) && (this.RootFolder != null)) | 110 | if ((userID == this.UserProfile.UUID) && (this.RootFolder != null)) |
111 | { | 111 | { |
112 | this.m_parentCommsManager.InventoryServer.AddNewInventoryItem(userID, itemInfo); | 112 | this.m_parentCommsManager.InventoryService.AddNewInventoryItem(userID, itemInfo); |
113 | } | 113 | } |
114 | } | 114 | } |
115 | 115 | ||
@@ -121,7 +121,7 @@ namespace OpenSim.Framework.Communications.Caches | |||
121 | result = RootFolder.DeleteItem(item.inventoryID); | 121 | result = RootFolder.DeleteItem(item.inventoryID); |
122 | if (result) | 122 | if (result) |
123 | { | 123 | { |
124 | this.m_parentCommsManager.InventoryServer.DeleteInventoryItem(userID, item); | 124 | this.m_parentCommsManager.InventoryService.DeleteInventoryItem(userID, item); |
125 | } | 125 | } |
126 | } | 126 | } |
127 | return result; | 127 | return result; |