diff --git a/OpenSim/Data/SQLite/SQLiteSimulationData.cs b/OpenSim/Data/SQLite/SQLiteSimulationData.cs
index 8d93354391..377c680d70 100644
--- a/OpenSim/Data/SQLite/SQLiteSimulationData.cs
+++ b/OpenSim/Data/SQLite/SQLiteSimulationData.cs
@@ -669,10 +669,6 @@ namespace OpenSim.Data.SQLite
}
}
- ///
- ///
- ///
- ///
public void RemoveLandObject(UUID globalID)
{
lock (ds)
@@ -698,7 +694,6 @@ namespace OpenSim.Data.SQLite
if (landRow != null)
{
landRow.Delete();
- land.Rows.Remove(landRow);
}
List rowsToDelete = new List();
foreach (DataRow rowToCheck in landaccesslist.Rows)
@@ -709,7 +704,6 @@ namespace OpenSim.Data.SQLite
for (int iter = 0; iter < rowsToDelete.Count; iter++)
{
rowsToDelete[iter].Delete();
- landaccesslist.Rows.Remove(rowsToDelete[iter]);
}
}
Commit();
diff --git a/bin/sqlite3.dll b/bin/sqlite3.dll
index 558a015a7f..f29dc625fa 100755
Binary files a/bin/sqlite3.dll and b/bin/sqlite3.dll differ