aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Authentication
diff options
context:
space:
mode:
authorJeff Ames2009-06-04 03:58:04 +0000
committerJeff Ames2009-06-04 03:58:04 +0000
commitc6cef4bad5fe939b822687f521907c11c05a2bb3 (patch)
treeea76bc0035027a23e7ec9f05f6c77e01f106b880 /OpenSim/Server/Handlers/Authentication
parentComment out unused private functions to avoid compiler warnings. (diff)
downloadopensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.zip
opensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.tar.gz
opensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.tar.bz2
opensim-SC_OLD-c6cef4bad5fe939b822687f521907c11c05a2bb3.tar.xz
Comment out unused variables / private fields to avoid compiler warnings.
Diffstat (limited to 'OpenSim/Server/Handlers/Authentication')
-rw-r--r--OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs b/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs
index 07dea4a..c3c2f69 100644
--- a/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs
+++ b/OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs
@@ -36,7 +36,7 @@ namespace OpenSim.Server.Handlers.Authentication
36{ 36{
37 public class AuthenticationServiceConnector : ServiceConnector 37 public class AuthenticationServiceConnector : ServiceConnector
38 { 38 {
39 private IAuthenticationService m_AuthenticationService; 39 //private IAuthenticationService m_AuthenticationService;
40 40
41 public AuthenticationServiceConnector(IConfigSource config, IHttpServer server) : 41 public AuthenticationServiceConnector(IConfigSource config, IHttpServer server) :
42 base(config, server) 42 base(config, server)
@@ -51,9 +51,8 @@ namespace OpenSim.Server.Handlers.Authentication
51 if (authenticationService == String.Empty) 51 if (authenticationService == String.Empty)
52 throw new Exception("No AuthenticationService in config file"); 52 throw new Exception("No AuthenticationService in config file");
53 53
54 Object[] args = new Object[] { config }; 54 //Object[] args = new Object[] { config };
55 m_AuthenticationService = 55 //m_AuthenticationService = ServerUtils.LoadPlugin<IAuthenticationService>(authenticationService, args);
56 ServerUtils.LoadPlugin<IAuthenticationService>(authenticationService, args);
57 56
58 //server.AddStreamHandler(new AuthenticationServerGetHandler(m_AuthenticationService)); 57 //server.AddStreamHandler(new AuthenticationServerGetHandler(m_AuthenticationService));
59 } 58 }