diff options
author | Justin Clark-Casey (justincc) | 2010-08-16 22:21:46 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-01-25 04:03:11 +0000 |
commit | a6d9c263650cc23d60f941718f87a64aa2f360b2 (patch) | |
tree | 29bdd5df7bae66360e19a38c304e7197b6a55342 /OpenSim/Data/MSSQL | |
parent | Implement dynamic attribute persistence on mysql and mssql (diff) | |
download | opensim-SC_OLD-a6d9c263650cc23d60f941718f87a64aa2f360b2.zip opensim-SC_OLD-a6d9c263650cc23d60f941718f87a64aa2f360b2.tar.gz opensim-SC_OLD-a6d9c263650cc23d60f941718f87a64aa2f360b2.tar.bz2 opensim-SC_OLD-a6d9c263650cc23d60f941718f87a64aa2f360b2.tar.xz |
Encapsulate an OSDMap in DAMap (was DynAttrsOSDMap) rather than inheriting from it
This is the easier way to give us control over locking, rather than asking that OSDMap IDictionary methods be virtual
Diffstat (limited to 'OpenSim/Data/MSSQL')
-rw-r--r-- | OpenSim/Data/MSSQL/MSSQLSimulationData.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/MSSQL/MSSQLSimulationData.cs b/OpenSim/Data/MSSQL/MSSQLSimulationData.cs index e949738..e0e260d 100644 --- a/OpenSim/Data/MSSQL/MSSQLSimulationData.cs +++ b/OpenSim/Data/MSSQL/MSSQLSimulationData.cs | |||
@@ -1693,9 +1693,9 @@ VALUES | |||
1693 | prim.MediaUrl = (string)primRow["MediaURL"]; | 1693 | prim.MediaUrl = (string)primRow["MediaURL"]; |
1694 | 1694 | ||
1695 | if (!(primRow["DynAttrs"] is System.DBNull)) | 1695 | if (!(primRow["DynAttrs"] is System.DBNull)) |
1696 | prim.DynAttrs = DynAttrsOSDMap.FromXml((string)primRow["DynAttrs"]); | 1696 | prim.DynAttrs = DAMap.FromXml((string)primRow["DynAttrs"]); |
1697 | else | 1697 | else |
1698 | prim.DynAttrs = new DynAttrsOSDMap(); | 1698 | prim.DynAttrs = new DAMap(); |
1699 | 1699 | ||
1700 | return prim; | 1700 | return prim; |
1701 | } | 1701 | } |
@@ -1755,9 +1755,9 @@ VALUES | |||
1755 | } | 1755 | } |
1756 | 1756 | ||
1757 | if (!(shapeRow["DynAttrs"] is System.DBNull)) | 1757 | if (!(shapeRow["DynAttrs"] is System.DBNull)) |
1758 | baseShape.DynAttrs = DynAttrsOSDMap.FromXml((string)shapeRow["DynAttrs"]); | 1758 | baseShape.DynAttrs = DAMap.FromXml((string)shapeRow["DynAttrs"]); |
1759 | else | 1759 | else |
1760 | baseShape.DynAttrs = new DynAttrsOSDMap(); | 1760 | baseShape.DynAttrs = new DAMap(); |
1761 | 1761 | ||
1762 | return baseShape; | 1762 | return baseShape; |
1763 | } | 1763 | } |