diff options
author | Adam Frisby | 2008-05-01 15:36:39 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-01 15:36:39 +0000 |
commit | a1c8aa4050b7f7a94e02dd40d8cd456f258b4e2b (patch) | |
tree | a71b99297fa2b57f7c53492fe18f48b3d3ad8827 /OpenSim/Framework/Communications/UserManagerBase.cs | |
parent | Moving LaunchSLClient source files so build works (2/2) (diff) | |
download | opensim-SC_OLD-a1c8aa4050b7f7a94e02dd40d8cd456f258b4e2b.zip opensim-SC_OLD-a1c8aa4050b7f7a94e02dd40d8cd456f258b4e2b.tar.gz opensim-SC_OLD-a1c8aa4050b7f7a94e02dd40d8cd456f258b4e2b.tar.bz2 opensim-SC_OLD-a1c8aa4050b7f7a94e02dd40d8cd456f258b4e2b.tar.xz |
* Cleaned namespaces of entire solution. OpenSim directories now correspond with namespaces.
Diffstat (limited to 'OpenSim/Framework/Communications/UserManagerBase.cs')
-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 |