diff options
author | Justin Clarke Casey | 2008-09-06 00:09:24 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-09-06 00:09:24 +0000 |
commit | de467f4903ea41374382cf8a005b3fdeeae280e7 (patch) | |
tree | 43a6cce4d4f0e26d22d8c6525dfc5871745f06d2 /OpenSim/Data | |
parent | Mantis#2093. Thank you kindly, Ewe Loon for a patch that: (diff) | |
download | opensim-SC_OLD-de467f4903ea41374382cf8a005b3fdeeae280e7.zip opensim-SC_OLD-de467f4903ea41374382cf8a005b3fdeeae280e7.tar.gz opensim-SC_OLD-de467f4903ea41374382cf8a005b3fdeeae280e7.tar.bz2 opensim-SC_OLD-de467f4903ea41374382cf8a005b3fdeeae280e7.tar.xz |
* Remove lots of warnings from the CMS module
* Remove a few other miscellaneous warnings
Diffstat (limited to 'OpenSim/Data')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLEstateData.cs | 4 | ||||
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLRegionData.cs | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLEstateData.cs b/OpenSim/Data/MSSQL/MSSQLEstateData.cs index 324d3b3..74eecd8 100644 --- a/OpenSim/Data/MSSQL/MSSQLEstateData.cs +++ b/OpenSim/Data/MSSQL/MSSQLEstateData.cs | |||
@@ -209,9 +209,9 @@ namespace OpenSim.Data.MSSQL | |||
209 | { | 209 | { |
210 | cmd.ExecuteNonQuery(); | 210 | cmd.ExecuteNonQuery(); |
211 | } | 211 | } |
212 | catch (Exception Ex) | 212 | catch (Exception e) |
213 | { | 213 | { |
214 | _Log.Debug("[ESTATE DB]: Error inserting regionID and EstateID in estate_map"); | 214 | _Log.DebugFormat("[ESTATE DB]: Error inserting regionID and EstateID in estate_map: {0}", e); |
215 | } | 215 | } |
216 | } | 216 | } |
217 | 217 | ||
diff --git a/OpenSim/Data/MSSQL/MSSQLRegionData.cs b/OpenSim/Data/MSSQL/MSSQLRegionData.cs index e26b03d..6164dab 100644 --- a/OpenSim/Data/MSSQL/MSSQLRegionData.cs +++ b/OpenSim/Data/MSSQL/MSSQLRegionData.cs | |||
@@ -548,7 +548,6 @@ namespace OpenSim.Data.MSSQL | |||
548 | while (readerLandData.Read()) | 548 | while (readerLandData.Read()) |
549 | { | 549 | { |
550 | LandData data = buildLandData(readerLandData); | 550 | LandData data = buildLandData(readerLandData); |
551 | |||
552 | } | 551 | } |
553 | } | 552 | } |
554 | } | 553 | } |