diff options
author | Adam Frisby | 2008-05-08 05:35:01 +0000 |
---|---|---|
committer | Adam Frisby | 2008-05-08 05:35:01 +0000 |
commit | 4fa0cbdfbb9b8c1b60c8f23edb6301962afd8533 (patch) | |
tree | 810a9afdba93b636a3589d1b8dc82d7ba932f28f /OpenSim/Data/MSSQL | |
parent | * Reduced major-ass ugly code in LoadBalancer/TcpClient.cs (diff) | |
download | opensim-SC_OLD-4fa0cbdfbb9b8c1b60c8f23edb6301962afd8533.zip opensim-SC_OLD-4fa0cbdfbb9b8c1b60c8f23edb6301962afd8533.tar.gz opensim-SC_OLD-4fa0cbdfbb9b8c1b60c8f23edb6301962afd8533.tar.bz2 opensim-SC_OLD-4fa0cbdfbb9b8c1b60c8f23edb6301962afd8533.tar.xz |
* You can haz more spring cleaning.
* Eventually this codebase will be clean. >_>
Diffstat (limited to 'OpenSim/Data/MSSQL')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLManager.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLManager.cs b/OpenSim/Data/MSSQL/MSSQLManager.cs index 6d73c64..2aea641 100644 --- a/OpenSim/Data/MSSQL/MSSQLManager.cs +++ b/OpenSim/Data/MSSQL/MSSQLManager.cs | |||
@@ -264,12 +264,7 @@ namespace OpenSim.Data.MSSQL | |||
264 | regionprofile.regionUserURI = (string)reader["regionUserURI"]; | 264 | regionprofile.regionUserURI = (string)reader["regionUserURI"]; |
265 | regionprofile.regionUserRecvKey = (string)reader["regionUserRecvKey"]; | 265 | regionprofile.regionUserRecvKey = (string)reader["regionUserRecvKey"]; |
266 | regionprofile.regionUserSendKey = (string)reader["regionUserSendKey"]; | 266 | regionprofile.regionUserSendKey = (string)reader["regionUserSendKey"]; |
267 | try | 267 | regionprofile.owner_uuid = new LLUUID((string) reader["owner_uuid"]); |
268 | { | ||
269 | regionprofile.owner_uuid = new LLUUID((string)reader["owner_uuid"]); | ||
270 | } | ||
271 | catch(Exception) | ||
272 | {} | ||
273 | // World Map Addition | 268 | // World Map Addition |
274 | string tempRegionMap = reader["regionMapTexture"].ToString(); | 269 | string tempRegionMap = reader["regionMapTexture"].ToString(); |
275 | if (tempRegionMap != String.Empty) | 270 | if (tempRegionMap != String.Empty) |