From a28a6e9aaa8d0563fa98e13a9ec586ccfa236fcb Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Wed, 28 May 2008 14:57:24 +0000 Subject: [PATCH] remove an erroneous line to fetch the terrain table in a way that isn't actually used. --- OpenSim/Data/MySQL/MySQLDataStore.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenSim/Data/MySQL/MySQLDataStore.cs b/OpenSim/Data/MySQL/MySQLDataStore.cs index 1cd76a8ea1..7ee625da42 100644 --- a/OpenSim/Data/MySQL/MySQLDataStore.cs +++ b/OpenSim/Data/MySQL/MySQLDataStore.cs @@ -447,8 +447,6 @@ namespace OpenSim.Data.MySQL lock (m_dataSet) { - DataTable terrain = m_dataSet.Tables["terrain"]; - MySqlCommand cmd = new MySqlCommand("insert into terrain(RegionUUID, Revision, Heightfield)" + " values(?RegionUUID, ?Revision, ?Heightfield)", m_connection); using (cmd)