diff options
author | Justin Clarke Casey | 2008-10-17 17:08:14 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-10-17 17:08:14 +0000 |
commit | e4b8912296536aab8a267ddbaee5d95419f806e8 (patch) | |
tree | f8e16ea6fc771634b70e87447a9eb3286de130f6 /OpenSim/Framework/Communications/UserManagerBase.cs | |
parent | * Apply a modified version of http://opensimulator.org/mantis/view.php?id=2290 (diff) | |
download | opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.zip opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.tar.gz opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.tar.bz2 opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.tar.xz |
* reverse part of a change that accidentally crept in with the last revision
Diffstat (limited to 'OpenSim/Framework/Communications/UserManagerBase.cs')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index 32bfed7..ba9cf27 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -84,6 +84,7 @@ namespace OpenSim.Framework.Communications | |||
84 | 84 | ||
85 | return null; | 85 | return null; |
86 | } | 86 | } |
87 | |||
87 | public void ResetAttachments(UUID userID) | 88 | public void ResetAttachments(UUID userID) |
88 | { | 89 | { |
89 | foreach (IUserDataPlugin plugin in _plugins) | 90 | foreach (IUserDataPlugin plugin in _plugins) |
@@ -91,6 +92,7 @@ namespace OpenSim.Framework.Communications | |||
91 | plugin.ResetAttachments(userID); | 92 | plugin.ResetAttachments(userID); |
92 | } | 93 | } |
93 | } | 94 | } |
95 | |||
94 | public UserAgentData GetAgentByUUID(UUID userId) | 96 | public UserAgentData GetAgentByUUID(UUID userId) |
95 | { | 97 | { |
96 | foreach (IUserDataPlugin plugin in _plugins) | 98 | foreach (IUserDataPlugin plugin in _plugins) |
@@ -105,6 +107,7 @@ namespace OpenSim.Framework.Communications | |||
105 | 107 | ||
106 | return null; | 108 | return null; |
107 | } | 109 | } |
110 | |||
108 | // see IUserService | 111 | // see IUserService |
109 | public UserProfileData GetUserProfile(UUID uuid) | 112 | public UserProfileData GetUserProfile(UUID uuid) |
110 | { | 113 | { |
@@ -137,6 +140,7 @@ namespace OpenSim.Framework.Communications | |||
137 | return new List<AvatarPickerAvatar>(); | 140 | return new List<AvatarPickerAvatar>(); |
138 | } | 141 | } |
139 | } | 142 | } |
143 | |||
140 | return pickerlist; | 144 | return pickerlist; |
141 | } | 145 | } |
142 | 146 | ||