diff options
author | Justin Clark-Casey (justincc) | 2011-11-15 16:12:35 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-11-15 16:12:35 +0000 |
commit | 430821d83722f94612cb165de1b88d6268c95e07 (patch) | |
tree | 1b2bb1e90d99c3e8978928aebf0824f4352a7d9a /OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs | |
parent | refactor: rename m_NeedsListOfFriends => m_NeedsListOfOnlineFriends to better... (diff) | |
download | opensim-SC-430821d83722f94612cb165de1b88d6268c95e07.zip opensim-SC-430821d83722f94612cb165de1b88d6268c95e07.tar.gz opensim-SC-430821d83722f94612cb165de1b88d6268c95e07.tar.bz2 opensim-SC-430821d83722f94612cb165de1b88d6268c95e07.tar.xz |
Rename FetchFriendslist() -> CacheFriends() and RefetchFriends() -> RecacheFriends() to reflect their intended function
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs index 02b417f..56bba75 100644 --- a/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Friends/HGFriendsModule.cs | |||
@@ -30,7 +30,6 @@ using System.Collections; | |||
30 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
31 | using System.Reflection; | 31 | using System.Reflection; |
32 | using System.Threading; | 32 | using System.Threading; |
33 | |||
34 | using log4net; | 33 | using log4net; |
35 | using Nini.Config; | 34 | using Nini.Config; |
36 | using Nwc.XmlRpc; | 35 | using Nwc.XmlRpc; |
@@ -84,9 +83,9 @@ namespace OpenSim.Region.CoreModules.Avatar.Friends | |||
84 | 83 | ||
85 | #endregion | 84 | #endregion |
86 | 85 | ||
87 | protected override bool FetchFriendslist(IClientAPI client) | 86 | protected override bool CacheFriends(IClientAPI client) |
88 | { | 87 | { |
89 | if (base.FetchFriendslist(client)) | 88 | if (base.CacheFriends(client)) |
90 | { | 89 | { |
91 | UUID agentID = client.AgentId; | 90 | UUID agentID = client.AgentId; |
92 | // we do this only for the root agent | 91 | // we do this only for the root agent |