* 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; errorSeen = true;
continue; continue;
continue;
} }
throw; throw;
} }

View File

@ -3490,7 +3490,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
handlerGenericMessage(sender, method, msg); handlerGenericMessage(sender, method, msg);
return true; 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_ControlEventsInQueue = 0;
private int m_LastControlLevel = 0; private int m_LastControlLevel = 0;
private bool m_CollisionInQueue = false; private bool m_CollisionInQueue = false;
private ISponsor m_ScriptSponsor; //private ISponsor m_ScriptSponsor;
private Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>> private Dictionary<KeyValuePair<int, int>, KeyValuePair<int, int>>
m_LineMap; m_LineMap;
@ -213,7 +213,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Instance
ISponsor scriptSponsor = new ScriptSponsor(); ISponsor scriptSponsor = new ScriptSponsor();
ILease lease = (ILease)RemotingServices.GetLifetimeService(m_Script as MarshalByRefObject); ILease lease = (ILease)RemotingServices.GetLifetimeService(m_Script as MarshalByRefObject);
lease.Register(scriptSponsor); lease.Register(scriptSponsor);
m_ScriptSponsor = scriptSponsor; //m_ScriptSponsor = scriptSponsor;
} }
catch (Exception e) catch (Exception e)