* Remove lots of warnings from the CMS module

* Remove a few other miscellaneous warnings
This commit is contained in:
Justin Clarke Casey
2008-09-06 00:09:24 +00:00
parent 0054bce5ae
commit de467f4903
8 changed files with 14 additions and 15 deletions

View File

@@ -209,9 +209,9 @@ namespace OpenSim.Data.MSSQL
{
cmd.ExecuteNonQuery();
}
catch (Exception Ex)
catch (Exception e)
{
_Log.Debug("[ESTATE DB]: Error inserting regionID and EstateID in estate_map");
_Log.DebugFormat("[ESTATE DB]: Error inserting regionID and EstateID in estate_map: {0}", e);
}
}

View File

@@ -548,7 +548,6 @@ namespace OpenSim.Data.MSSQL
while (readerLandData.Read())
{
LandData data = buildLandData(readerLandData);
}
}
}