diff options
author | Justin Clarke Casey | 2008-12-11 17:23:55 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-11 17:23:55 +0000 |
commit | c4b45449ee571d919836caaf57ab63ff10110335 (patch) | |
tree | 212e018b0705e60b13bcd343cba7f88fa6e28efa /OpenSim/Framework/Communications/Cache | |
parent | * minor: Move mock test classes into mock namespace (diff) | |
download | opensim-SC_OLD-c4b45449ee571d919836caaf57ab63ff10110335.zip opensim-SC_OLD-c4b45449ee571d919836caaf57ab63ff10110335.tar.gz opensim-SC_OLD-c4b45449ee571d919836caaf57ab63ff10110335.tar.bz2 opensim-SC_OLD-c4b45449ee571d919836caaf57ab63ff10110335.tar.xz |
* test: Add simple user profile test that checks for non-existing users
Diffstat (limited to 'OpenSim/Framework/Communications/Cache')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs index 958ef4e..0cbb717 100644 --- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs +++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs | |||
@@ -54,7 +54,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
54 | /// <summary> | 54 | /// <summary> |
55 | /// The root library folder. | 55 | /// The root library folder. |
56 | /// </summary> | 56 | /// </summary> |
57 | public readonly LibraryRootFolder LibraryRoot; | 57 | public readonly InventoryFolderImpl LibraryRoot; |
58 | 58 | ||
59 | /// <summary> | 59 | /// <summary> |
60 | /// Constructor | 60 | /// Constructor |
@@ -70,6 +70,10 @@ namespace OpenSim.Framework.Communications.Cache | |||
70 | /// <summary> | 70 | /// <summary> |
71 | /// A new user has moved into a region in this instance so retrieve their profile from the user service. | 71 | /// A new user has moved into a region in this instance so retrieve their profile from the user service. |
72 | /// </summary> | 72 | /// </summary> |
73 | /// | ||
74 | /// It isn't strictly necessary to make this call since user data can be lazily requested later on. However, | ||
75 | /// it might be helpful in order to avoid an initial response delay later on | ||
76 | /// | ||
73 | /// <param name="userID"></param> | 77 | /// <param name="userID"></param> |
74 | public void AddNewUser(UUID userID) | 78 | public void AddNewUser(UUID userID) |
75 | { | 79 | { |