diff options
author | Justin Clark-Casey (justincc) | 2010-08-26 00:17:26 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-08-26 00:17:26 +0100 |
commit | 692cf3c657aaa74645722491c997f23b4d6f8f76 (patch) | |
tree | 9eeceadc2e326f718ee1aed04e5547fa53a4ca31 /OpenSim/Data/SQLiteLegacy | |
parent | replace m_parts.Count linknum with 0 in CopyRootPart since m_parts.Count is a... (diff) | |
download | opensim-SC_OLD-692cf3c657aaa74645722491c997f23b4d6f8f76.zip opensim-SC_OLD-692cf3c657aaa74645722491c997f23b4d6f8f76.tar.gz opensim-SC_OLD-692cf3c657aaa74645722491c997f23b4d6f8f76.tar.bz2 opensim-SC_OLD-692cf3c657aaa74645722491c997f23b4d6f8f76.tar.xz |
Remove parts locking from data classes since these are using a copy of the scene object
Diffstat (limited to 'OpenSim/Data/SQLiteLegacy')
-rw-r--r-- | OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs b/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs index 779b2ed..289fd94 100644 --- a/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs +++ b/OpenSim/Data/SQLiteLegacy/SQLiteRegionData.cs | |||
@@ -327,13 +327,10 @@ namespace OpenSim.Data.SQLiteLegacy | |||
327 | 327 | ||
328 | lock (ds) | 328 | lock (ds) |
329 | { | 329 | { |
330 | lock (obj.Children) | 330 | foreach (SceneObjectPart prim in obj.Children.Values) |
331 | { | 331 | { |
332 | foreach (SceneObjectPart prim in obj.Children.Values) | 332 | // m_log.Info("[REGION DB]: Adding obj: " + obj.UUID + " to region: " + regionUUID); |
333 | { | 333 | addPrim(prim, obj.UUID, regionUUID); |
334 | // m_log.Info("[REGION DB]: Adding obj: " + obj.UUID + " to region: " + regionUUID); | ||
335 | addPrim(prim, obj.UUID, regionUUID); | ||
336 | } | ||
337 | } | 334 | } |
338 | } | 335 | } |
339 | 336 | ||