aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/CommunicationsManager.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-28 16:04:01 +0000
committerJustin Clarke Casey2008-11-28 16:04:01 +0000
commit18974b77668553a9fd1bba0b646bfc7a0d788bcb (patch)
treec144c255e2057a42a0a54a42d50b892e4fafb739 /OpenSim/Framework/Communications/CommunicationsManager.cs
parent* refactor: move ResetUserPassword into UserServiceAdmin (diff)
downloadopensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.zip
opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.tar.gz
opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.tar.bz2
opensim-SC_OLD-18974b77668553a9fd1bba0b646bfc7a0d788bcb.tar.xz
* refactor: rename UserServiceAdmin to UserAdminService
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/CommunicationsManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs
index c4adfa5..72c01bd 100644
--- a/OpenSim/Framework/Communications/CommunicationsManager.cs
+++ b/OpenSim/Framework/Communications/CommunicationsManager.cs
@@ -108,11 +108,11 @@ namespace OpenSim.Framework.Communications
108 /// <summary> 108 /// <summary>
109 /// Interface to user service for administrating users. 109 /// Interface to user service for administrating users.
110 /// </summary> 110 /// </summary>
111 public IUserServiceAdmin UserServiceAdmin 111 public IUserAdminService UserAdminService
112 { 112 {
113 get { return m_userServiceAdmin; } 113 get { return m_userAdminService; }
114 } 114 }
115 protected IUserServiceAdmin m_userServiceAdmin; 115 protected IUserAdminService m_userAdminService;
116 116
117 public BaseHttpServer HttpServer 117 public BaseHttpServer HttpServer
118 { 118 {