diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index 0f7dc44..e4d8ca2 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -36,7 +36,7 @@ using log4net; | |||
36 | using Nwc.XmlRpc; | 36 | using Nwc.XmlRpc; |
37 | using OpenSim.Framework.Statistics; | 37 | using OpenSim.Framework.Statistics; |
38 | 38 | ||
39 | namespace OpenSim.Framework.UserManagement | 39 | namespace OpenSim.Framework.Communications |
40 | { | 40 | { |
41 | /// <summary> | 41 | /// <summary> |
42 | /// Base class for user management (create, read, etc) | 42 | /// Base class for user management (create, read, etc) |
@@ -245,7 +245,7 @@ namespace OpenSim.Framework.UserManagement | |||
245 | { | 245 | { |
246 | try | 246 | try |
247 | { | 247 | { |
248 | plugin.Value.RemoveUserFriend(friendlistowner, friend); | 248 | plugin.Value.RemoveUserFriend(friendlistowner, friend); |
249 | } | 249 | } |
250 | catch (Exception e) | 250 | catch (Exception e) |
251 | { | 251 | { |
@@ -370,7 +370,7 @@ namespace OpenSim.Framework.UserManagement | |||
370 | if ((profile.CurrentAgent.Position.X > 0) | 370 | if ((profile.CurrentAgent.Position.X > 0) |
371 | && (profile.CurrentAgent.Position.Y > 0) | 371 | && (profile.CurrentAgent.Position.Y > 0) |
372 | && (profile.CurrentAgent.Position.Z > 0) | 372 | && (profile.CurrentAgent.Position.Z > 0) |
373 | ) | 373 | ) |
374 | { | 374 | { |
375 | // TODO: Right now, currentRegion has not been used in GridServer for requesting region. | 375 | // TODO: Right now, currentRegion has not been used in GridServer for requesting region. |
376 | // TODO: It is only using currentHandle. | 376 | // TODO: It is only using currentHandle. |
@@ -564,7 +564,7 @@ namespace OpenSim.Framework.UserManagement | |||
564 | catch (Exception e) | 564 | catch (Exception e) |
565 | { | 565 | { |
566 | m_log.Info("[USERSTORAGE]: Unable to update user " + UserProfile.ID.ToString() | 566 | m_log.Info("[USERSTORAGE]: Unable to update user " + UserProfile.ID.ToString() |
567 | + " via " + plugin.Key + "(" + e.ToString() + ")"); | 567 | + " via " + plugin.Key + "(" + e.ToString() + ")"); |
568 | return false; | 568 | return false; |
569 | } | 569 | } |
570 | } | 570 | } |
@@ -596,4 +596,4 @@ namespace OpenSim.Framework.UserManagement | |||
596 | return false; | 596 | return false; |
597 | } | 597 | } |
598 | } | 598 | } |
599 | } | 599 | } \ No newline at end of file |