Cleaned up a couple compiler warnings.

0.6.0-stable
Jeff Ames 2008-03-04 10:12:39 +00:00
parent c78eebfdfc
commit d2806090ae
4 changed files with 12 additions and 12 deletions

View File

@ -193,7 +193,6 @@ namespace OpenSim.Framework
packet.Header.Reliable = false; packet.Header.Reliable = false;
LocalClients[i].OutPacket(packet, ThrottleOutPacketType.Task); LocalClients[i].OutPacket(packet, ThrottleOutPacketType.Task);
} }
} }
} }

View File

@ -522,7 +522,7 @@ namespace OpenSim.Grid.GridServer
//RegionProfileData TheSim = null; //RegionProfileData TheSim = null;
string uuid = String.Empty;; string uuid = String.Empty;;
Hashtable requestData = (Hashtable) request.Params[0]; Hashtable requestData = (Hashtable) request.Params[0];
string myword;
if (requestData.ContainsKey("UUID")) { if (requestData.ContainsKey("UUID")) {
//TheSim = getRegion(new LLUUID((string) requestData["UUID"])); //TheSim = getRegion(new LLUUID((string) requestData["UUID"]));
uuid = requestData["UUID"].ToString(); uuid = requestData["UUID"].ToString();
@ -559,7 +559,8 @@ namespace OpenSim.Grid.GridServer
break; break;
} }
} }
catch (Exception e) { catch (Exception)
{
m_log.Error("storage Unable to delete region " + uuid + " via MySQL"); m_log.Error("storage Unable to delete region " + uuid + " via MySQL");
//MainLog.Instance.Warn("storage", e.ToString()); //MainLog.Instance.Warn("storage", e.ToString());
} }

View File

@ -175,7 +175,7 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer {
} // while (true) } // while (true)
} }
catch (Exception e) catch (Exception)
{ {
//MainLog.Instance.Verbose("TCPSERVER", e.ToString()); //MainLog.Instance.Verbose("TCPSERVER", e.ToString());
//MainLog.Instance.Verbose("TCPSERVER", e.StackTrace); //MainLog.Instance.Verbose("TCPSERVER", e.StackTrace);