aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-16 20:24:11 +0000
committerJustin Clarke Casey2009-04-16 20:24:11 +0000
commit235ae95b50388de7a653a2cdba5f02696e78e014 (patch)
tree9634bbca6da8929dad7187fc88d77b45bdea0234 /OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
parent* Add name keyed cache to UserProfileCacheService (diff)
downloadopensim-SC_OLD-235ae95b50388de7a653a2cdba5f02696e78e014.zip
opensim-SC_OLD-235ae95b50388de7a653a2cdba5f02696e78e014.tar.gz
opensim-SC_OLD-235ae95b50388de7a653a2cdba5f02696e78e014.tar.bz2
opensim-SC_OLD-235ae95b50388de7a653a2cdba5f02696e78e014.tar.xz
* minor: Eliminate redundant argument in PreloadUserCache
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs')
-rw-r--r--OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
index 4aed338..714e279 100644
--- a/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
+++ b/OpenSim/Framework/Communications/Cache/UserProfileCacheService.cs
@@ -218,9 +218,8 @@ namespace OpenSim.Framework.Communications.Cache
218 /// <summary> 218 /// <summary>
219 /// Preloads User data into the region cache. Modules may use this service to add non-standard clients 219 /// Preloads User data into the region cache. Modules may use this service to add non-standard clients
220 /// </summary> 220 /// </summary>
221 /// <param name="userID"></param>
222 /// <param name="userData"></param> 221 /// <param name="userData"></param>
223 public void PreloadUserCache(UUID userID, UserProfileData userData) 222 public void PreloadUserCache(UserProfileData userData)
224 { 223 {
225 AddToCaches(userData); 224 AddToCaches(userData);
226 } 225 }