diff options
author | Melanie | 2012-03-09 02:45:53 +0000 |
---|---|---|
committer | Melanie | 2012-03-09 02:45:53 +0000 |
commit | 99c64f0645c6ecf4a0e2667b84946afd960b486c (patch) | |
tree | c6109905460ff51052a0a71552216f065464e0f5 /OpenSim/Data/MySQL/MySQLXAssetData.cs | |
parent | Merge branch 'master' into careminster (diff) | |
download | opensim-SC_OLD-99c64f0645c6ecf4a0e2667b84946afd960b486c.zip opensim-SC_OLD-99c64f0645c6ecf4a0e2667b84946afd960b486c.tar.gz opensim-SC_OLD-99c64f0645c6ecf4a0e2667b84946afd960b486c.tar.bz2 opensim-SC_OLD-99c64f0645c6ecf4a0e2667b84946afd960b486c.tar.xz |
Fix a merge artefact
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLXAssetData.cs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Data/MySQL/MySQLXAssetData.cs b/OpenSim/Data/MySQL/MySQLXAssetData.cs index 95ef72a..692ade7 100644 --- a/OpenSim/Data/MySQL/MySQLXAssetData.cs +++ b/OpenSim/Data/MySQL/MySQLXAssetData.cs | |||
@@ -190,7 +190,7 @@ namespace OpenSim.Data.MySQL | |||
190 | /// </summary> | 190 | /// </summary> |
191 | /// <param name="asset">Asset UUID to create</param> | 191 | /// <param name="asset">Asset UUID to create</param> |
192 | /// <remarks>On failure : Throw an exception and attempt to reconnect to database</remarks> | 192 | /// <remarks>On failure : Throw an exception and attempt to reconnect to database</remarks> |
193 | override public void StoreAsset(AssetBase asset) | 193 | override public bool StoreAsset(AssetBase asset) |
194 | { | 194 | { |
195 | lock (m_dbLock) | 195 | lock (m_dbLock) |
196 | { | 196 | { |
@@ -265,7 +265,7 @@ namespace OpenSim.Data.MySQL | |||
265 | 265 | ||
266 | transaction.Rollback(); | 266 | transaction.Rollback(); |
267 | 267 | ||
268 | return; | 268 | return false; |
269 | } | 269 | } |
270 | 270 | ||
271 | if (!ExistsData(dbcon, transaction, hash)) | 271 | if (!ExistsData(dbcon, transaction, hash)) |
@@ -289,7 +289,7 @@ namespace OpenSim.Data.MySQL | |||
289 | 289 | ||
290 | transaction.Rollback(); | 290 | transaction.Rollback(); |
291 | 291 | ||
292 | return; | 292 | return false; |
293 | } | 293 | } |
294 | } | 294 | } |
295 | 295 | ||
@@ -297,6 +297,7 @@ namespace OpenSim.Data.MySQL | |||
297 | } | 297 | } |
298 | } | 298 | } |
299 | } | 299 | } |
300 | return true; | ||
300 | } | 301 | } |
301 | 302 | ||
302 | // private void UpdateAccessTime(AssetBase asset) | 303 | // private void UpdateAccessTime(AssetBase asset) |
@@ -497,4 +498,4 @@ namespace OpenSim.Data.MySQL | |||
497 | 498 | ||
498 | #endregion | 499 | #endregion |
499 | } | 500 | } |
500 | } \ No newline at end of file | 501 | } |