* minor: remove some mono compiler warnings

This commit is contained in:
Justin Clarke Casey
2009-04-09 20:06:30 +00:00
parent 6af0751cc5
commit 601fa22185
3 changed files with 3 additions and 4 deletions

View File

@@ -36,12 +36,12 @@ namespace OpenSim.Region.OptionalModules.Scripting.Minimodule
private readonly IObject m_obj;
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
private readonly IGraphics m_graphics;
private Scene m_scene;
//private Scene m_scene;
public Host(IObject m_obj, Scene m_scene)
{
this.m_obj = m_obj;
this.m_scene = m_scene;
//this.m_scene = m_scene;
m_graphics = new Graphics(m_scene);
}