* minor: Remove most mono compiler warnings

This commit is contained in:
Justin Clarke Casey
2009-02-25 20:53:02 +00:00
parent a5c9354df3
commit 36e648a37a
18 changed files with 26 additions and 23 deletions

View File

@@ -42,7 +42,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins
public class BrowseFrontendPlugin : IAssetInventoryServerPlugin
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private AssetInventoryServer m_server;
//private AssetInventoryServer m_server;
public BrowseFrontendPlugin()
{
@@ -52,7 +52,7 @@ namespace OpenSim.Grid.AssetInventoryServer.Plugins
public void Initialise(AssetInventoryServer server)
{
m_server = server;
//m_server = server;
// Request for / or /?...
//m_server.HttpServer.AddStreamHandler(new BrowseRequestHandler(server));

View File

@@ -40,7 +40,7 @@ namespace OpenSim.Grid.GridServer.Modules
{
public class GridMessagingModule : IMessagingServerDiscovery
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
protected GridDBService m_gridDBService;
protected IGridServiceCore m_gridCore;
@@ -50,7 +50,7 @@ namespace OpenSim.Grid.GridServer.Modules
/// <value>
/// Used to notify old regions as to which OpenSim version to upgrade to
/// </value>
private string m_opensimVersion;
//private string m_opensimVersion;
protected BaseHttpServer m_httpServer;
@@ -63,7 +63,7 @@ namespace OpenSim.Grid.GridServer.Modules
public void Initialise(string opensimVersion, GridDBService gridDBService, IGridServiceCore gridCore, GridConfig config)
{
m_opensimVersion = opensimVersion;
//m_opensimVersion = opensimVersion;
m_gridDBService = gridDBService;
m_gridCore = gridCore;
m_config = config;

View File

@@ -53,7 +53,7 @@ namespace OpenSim.Grid.GridServer.Modules
/// <value>
/// Used to notify old regions as to which OpenSim version to upgrade to
/// </value>
private string m_opensimVersion;
//private string m_opensimVersion;
protected BaseHttpServer m_httpServer;
@@ -69,7 +69,7 @@ namespace OpenSim.Grid.GridServer.Modules
public void Initialise(string opensimVersion, GridDBService gridDBService, IGridServiceCore gridCore, GridConfig config)
{
m_opensimVersion = opensimVersion;
//m_opensimVersion = opensimVersion;
m_gridDBService = gridDBService;
m_gridCore = gridCore;
m_config = config;

View File

@@ -41,7 +41,7 @@ namespace OpenSim.Grid.UserServer.Modules
{
public class UserServerAvatarAppearanceModule
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private UserDataBaseService m_userDataBaseService;
private BaseHttpServer m_httpServer;

View File

@@ -41,7 +41,7 @@ namespace OpenSim.Grid.UserServer.Modules
{
public class UserServerFriendsModule
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private UserDataBaseService m_userDataBaseService;

View File

@@ -241,10 +241,12 @@ namespace OpenSim.Grid.UserServer
m_userDataBaseService.ResetUserPassword(firstName, lastName, newPassword);
}
/*
private void HandleTestCommand(string module, string[] cmd)
{
m_log.Info("test command received");
}
*/
private void HandleLoginCommand(string module, string[] cmd)
{