aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorJeff Ames2008-07-06 14:02:22 +0000
committerJeff Ames2008-07-06 14:02:22 +0000
commitd470d30c09fde202f708a9c8af763f5d16e18bfb (patch)
tree6a86572d268dda911a5208bf5be1a1f2c19adc3c /OpenSim/Data
parentRemove scripts that don't really belong in OpenSim SVN. (diff)
downloadopensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.zip
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.gz
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.bz2
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.xz
Copyright notices and formatting cleanup.
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MySQL/MySQLDataStore.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Data/MySQL/MySQLDataStore.cs b/OpenSim/Data/MySQL/MySQLDataStore.cs
index 69f9a16..7dc5b0c 100644
--- a/OpenSim/Data/MySQL/MySQLDataStore.cs
+++ b/OpenSim/Data/MySQL/MySQLDataStore.cs
@@ -729,13 +729,13 @@ namespace OpenSim.Data.MySQL
729 729
730 public RegionSettings LoadRegionSettings(LLUUID regionUUID) 730 public RegionSettings LoadRegionSettings(LLUUID regionUUID)
731 { 731 {
732 lock(m_dataSet) 732 lock (m_dataSet)
733 { 733 {
734 CheckConnection(); 734 CheckConnection();
735 DataTable regionsettings = m_regionSettingsTable; 735 DataTable regionsettings = m_regionSettingsTable;
736 string searchExp = "regionUUID = '" + regionUUID.ToString() + "'"; 736 string searchExp = "regionUUID = '" + regionUUID.ToString() + "'";
737 DataRow[] rawsettings = regionsettings.Select(searchExp); 737 DataRow[] rawsettings = regionsettings.Select(searchExp);
738 if(rawsettings.Length == 0) 738 if (rawsettings.Length == 0)
739 { 739 {
740 RegionSettings rs = new RegionSettings(); 740 RegionSettings rs = new RegionSettings();
741 rs.RegionUUID = regionUUID; 741 rs.RegionUUID = regionUUID;