aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/MySQLInventoryData.cs
diff options
context:
space:
mode:
authorJeff Ames2008-09-28 03:21:11 +0000
committerJeff Ames2008-09-28 03:21:11 +0000
commit0b4415849ace5ad7bf91a6d0c0374fc101f7136e (patch)
tree92e89ae1a89b2c3dd821e8c312c14e6ace24330f /OpenSim/Data/MySQL/MySQLInventoryData.cs
parenteol-style native; on EventQueueHelper (diff)
downloadopensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.zip
opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.tar.gz
opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.tar.bz2
opensim-SC_OLD-0b4415849ace5ad7bf91a6d0c0374fc101f7136e.tar.xz
Update svn properties. Minor formatting cleanup. Fix a compiler warning. Fix a UUID vs null comparison.
Diffstat (limited to 'OpenSim/Data/MySQL/MySQLInventoryData.cs')
-rw-r--r--OpenSim/Data/MySQL/MySQLInventoryData.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLInventoryData.cs b/OpenSim/Data/MySQL/MySQLInventoryData.cs
index 68885e1..f9583cf 100644
--- a/OpenSim/Data/MySQL/MySQLInventoryData.cs
+++ b/OpenSim/Data/MySQL/MySQLInventoryData.cs
@@ -826,8 +826,8 @@ namespace OpenSim.Data.MySQL
826 } 826 }
827 finally 827 finally
828 { 828 {
829 if(result != null) result.Close(); 829 if (result != null) result.Close();
830 if(sqlCmd != null) sqlCmd.Dispose(); 830 if (sqlCmd != null) sqlCmd.Dispose();
831 } 831 }
832 } 832 }
833 } 833 }