minor: remove mono compiler warning

0.6.8-post-fixes
Justin Clark-Casey (justincc) 2009-11-12 17:42:26 +00:00
parent cedd827f7f
commit 55a40694e7
2 changed files with 3 additions and 2 deletions

View File

@ -52,6 +52,7 @@ namespace OpenSim.Region.Framework.Scenes.Tests
ug.GatherAssetUuids(missingAssetUuid, AssetType.Object, foundAssetUuids);
// We count the uuid as gathered even if the asset itself is missing.
Assert.That(foundAssetUuids.Count, Is.EqualTo(1));
}
}

View File

@ -40,7 +40,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private IRCServer m_server;
private Scene m_scene;
// private Scene m_scene;
#region Implementation of IRegionModule
@ -50,7 +50,7 @@ namespace OpenSim.Region.OptionalModules.Agent.InternetRelayClientView
source.Configs["IRCd"].GetBoolean("Enabled",false))
{
int portNo = source.Configs["IRCd"].GetInt("Port",6666);
m_scene = scene;
// m_scene = scene;
m_server = new IRCServer(IPAddress.Parse("0.0.0.0"), portNo, scene);
m_server.OnNewIRCClient += m_server_OnNewIRCClient;
}