* minor: remove mono compiler warnings

0.6.1-post-fixes
Justin Clarke Casey 2008-11-27 19:51:11 +00:00
parent 45c50998c2
commit 8ba6b2b11a
3 changed files with 3 additions and 4 deletions

View File

@ -97,7 +97,6 @@ namespace OpenSim.Data.MySQL
{
errorSeen = true;
continue;
continue;
}
throw;
}

View File

@ -3490,7 +3490,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
handlerGenericMessage(sender, method, msg);
return true;
}
catch (Exception ex)
catch
{
}
}

View File

@ -83,7 +83,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
private int m_ControlEventsInQueue = 0;
private int m_LastControlLevel = 0;
private bool m_CollisionInQueue = false;
private ISponsor m_ScriptSponsor;
//private ISponsor m_ScriptSponsor;
private Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>>
m_LineMap;
@ -213,7 +213,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
ISponsor scriptSponsor = new ScriptSponsor();
ILease lease = (ILease)RemotingServices.GetLifetimeService(m_Script as MarshalByRefObject);
lease.Register(scriptSponsor);
m_ScriptSponsor = scriptSponsor;
//m_ScriptSponsor = scriptSponsor;
}
catch (Exception e)