diff options
author | Jeff Ames | 2008-06-04 09:59:27 +0000 |
---|---|---|
committer | Jeff Ames | 2008-06-04 09:59:27 +0000 |
commit | 4ec4e16c809cf86a63b736d2b7b6ad7291595a5f (patch) | |
tree | cfa896ef9057228171e2ee39c4807060101ba90b /OpenSim/Grid/MessagingServer/UserManager.cs | |
parent | * If a ThreadAbortException reaches AuthUser() then let it pass through unmol... (diff) | |
download | opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.zip opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.gz opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.bz2 opensim-SC_OLD-4ec4e16c809cf86a63b736d2b7b6ad7291595a5f.tar.xz |
Formatting cleanup, minor refactoring, svn properties.
Diffstat (limited to 'OpenSim/Grid/MessagingServer/UserManager.cs')
-rw-r--r-- | OpenSim/Grid/MessagingServer/UserManager.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Grid/MessagingServer/UserManager.cs b/OpenSim/Grid/MessagingServer/UserManager.cs index 605c3fb..de41756 100644 --- a/OpenSim/Grid/MessagingServer/UserManager.cs +++ b/OpenSim/Grid/MessagingServer/UserManager.cs | |||
@@ -44,7 +44,7 @@ namespace OpenSim.Grid.MessagingServer | |||
44 | public UserAgentData GetUserAgentData(LLUUID AgentID) | 44 | public UserAgentData GetUserAgentData(LLUUID AgentID) |
45 | { | 45 | { |
46 | UserProfileData userProfile = GetUserProfile(AgentID); | 46 | UserProfileData userProfile = GetUserProfile(AgentID); |
47 | 47 | ||
48 | if (userProfile != null) | 48 | if (userProfile != null) |
49 | { | 49 | { |
50 | return userProfile.CurrentAgent; | 50 | return userProfile.CurrentAgent; |
@@ -58,19 +58,19 @@ namespace OpenSim.Grid.MessagingServer | |||
58 | public override UserProfileData SetupMasterUser(string firstName, string lastName) | 58 | public override UserProfileData SetupMasterUser(string firstName, string lastName) |
59 | { | 59 | { |
60 | //throw new Exception("The method or operation is not implemented."); | 60 | //throw new Exception("The method or operation is not implemented."); |
61 | return null; | 61 | return null; |
62 | } | 62 | } |
63 | 63 | ||
64 | public override UserProfileData SetupMasterUser(string firstName, string lastName, string password) | 64 | public override UserProfileData SetupMasterUser(string firstName, string lastName, string password) |
65 | { | 65 | { |
66 | //throw new Exception("The method or operation is not implemented."); | 66 | //throw new Exception("The method or operation is not implemented."); |
67 | return null; | 67 | return null; |
68 | } | 68 | } |
69 | 69 | ||
70 | public override UserProfileData SetupMasterUser(LLUUID uuid) | 70 | public override UserProfileData SetupMasterUser(LLUUID uuid) |
71 | { | 71 | { |
72 | //throw new Exception("The method or operation is not implemented."); | 72 | //throw new Exception("The method or operation is not implemented."); |
73 | return null; | 73 | return null; |
74 | } | 74 | } |
75 | } | 75 | } |
76 | } | 76 | } |