From c6cef4bad5fe939b822687f521907c11c05a2bb3 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Thu, 4 Jun 2009 03:58:04 +0000 Subject: Comment out unused variables / private fields to avoid compiler warnings. --- .../Handlers/Authentication/AuthenticationServerConnector.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'OpenSim/Server/Handlers/Authentication/AuthenticationServerConnector.cs') 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 { public class AuthenticationServiceConnector : ServiceConnector { - private IAuthenticationService m_AuthenticationService; + //private IAuthenticationService m_AuthenticationService; public AuthenticationServiceConnector(IConfigSource config, IHttpServer server) : base(config, server) @@ -51,9 +51,8 @@ namespace OpenSim.Server.Handlers.Authentication if (authenticationService == String.Empty) throw new Exception("No AuthenticationService in config file"); - Object[] args = new Object[] { config }; - m_AuthenticationService = - ServerUtils.LoadPlugin(authenticationService, args); + //Object[] args = new Object[] { config }; + //m_AuthenticationService = ServerUtils.LoadPlugin(authenticationService, args); //server.AddStreamHandler(new AuthenticationServerGetHandler(m_AuthenticationService)); } -- cgit v1.1