From 6ef9d4da901a346c232458317cca6268da888e2e Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Mon, 18 Aug 2008 00:39:10 +0000 Subject: Formatting cleanup. --- OpenSim/Data/MySQL/MySQLAssetData.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Data/MySQL/MySQLAssetData.cs') diff --git a/OpenSim/Data/MySQL/MySQLAssetData.cs b/OpenSim/Data/MySQL/MySQLAssetData.cs index cec736a..bdb1571 100644 --- a/OpenSim/Data/MySQL/MySQLAssetData.cs +++ b/OpenSim/Data/MySQL/MySQLAssetData.cs @@ -144,11 +144,11 @@ namespace OpenSim.Data.MySQL _dbConnection.GetTableVersion(tableList); // if there is no table, return, migrations will handle it. - if (tableList["assets"] == null) + if (tableList["assets"] == null) return; // if there is a table, and we don't have a migration, set it to 1 - if (m.Version == 0) + if (m.Version == 0) m.Version = 1; } @@ -272,12 +272,12 @@ namespace OpenSim.Data.MySQL lock (_dbConnection) { _dbConnection.CheckConnection(); - + MySqlCommand cmd = new MySqlCommand( "SELECT id FROM assets WHERE id=?id", _dbConnection.Connection); - + cmd.Parameters.AddWithValue("?id", uuid.ToString()); try -- cgit v1.1