diff options
author | Jeff Ames | 2008-03-04 10:12:39 +0000 |
---|---|---|
committer | Jeff Ames | 2008-03-04 10:12:39 +0000 |
commit | d2806090aef48cff16d1ba2ae88ab0775f6a0489 (patch) | |
tree | 6e3115f4896a9edc4b7c68e18ebf15e44a527aba /OpenSim/Grid/GridServer/GridManager.cs | |
parent | Fixed a region split synchronization bug (diff) | |
download | opensim-SC_OLD-d2806090aef48cff16d1ba2ae88ab0775f6a0489.zip opensim-SC_OLD-d2806090aef48cff16d1ba2ae88ab0775f6a0489.tar.gz opensim-SC_OLD-d2806090aef48cff16d1ba2ae88ab0775f6a0489.tar.bz2 opensim-SC_OLD-d2806090aef48cff16d1ba2ae88ab0775f6a0489.tar.xz |
Cleaned up a couple compiler warnings.
Diffstat (limited to 'OpenSim/Grid/GridServer/GridManager.cs')
-rw-r--r-- | OpenSim/Grid/GridServer/GridManager.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs index 2e6a892..568f3f2 100644 --- a/OpenSim/Grid/GridServer/GridManager.cs +++ b/OpenSim/Grid/GridServer/GridManager.cs | |||
@@ -522,7 +522,7 @@ namespace OpenSim.Grid.GridServer | |||
522 | //RegionProfileData TheSim = null; | 522 | //RegionProfileData TheSim = null; |
523 | string uuid = String.Empty;; | 523 | string uuid = String.Empty;; |
524 | Hashtable requestData = (Hashtable) request.Params[0]; | 524 | Hashtable requestData = (Hashtable) request.Params[0]; |
525 | string myword; | 525 | |
526 | if (requestData.ContainsKey("UUID")) { | 526 | if (requestData.ContainsKey("UUID")) { |
527 | //TheSim = getRegion(new LLUUID((string) requestData["UUID"])); | 527 | //TheSim = getRegion(new LLUUID((string) requestData["UUID"])); |
528 | uuid = requestData["UUID"].ToString(); | 528 | uuid = requestData["UUID"].ToString(); |
@@ -559,7 +559,8 @@ namespace OpenSim.Grid.GridServer | |||
559 | break; | 559 | break; |
560 | } | 560 | } |
561 | } | 561 | } |
562 | catch (Exception e) { | 562 | catch (Exception) |
563 | { | ||
563 | m_log.Error("storage Unable to delete region " + uuid + " via MySQL"); | 564 | m_log.Error("storage Unable to delete region " + uuid + " via MySQL"); |
564 | //MainLog.Instance.Warn("storage", e.ToString()); | 565 | //MainLog.Instance.Warn("storage", e.ToString()); |
565 | } | 566 | } |