aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorMic Bowman2013-06-10 13:26:19 -0700
committerMic Bowman2013-06-10 13:26:19 -0700
commit57141e34bf415861a8acfdaa0086e0e651c679d9 (patch)
tree98b18a19c85be49bcb980c074558455bd28c462c /OpenSim/Services
parentMantis 5346: llAxisAngle2Rot() should normalize before computing (diff)
downloadopensim-SC_OLD-57141e34bf415861a8acfdaa0086e0e651c679d9.zip
opensim-SC_OLD-57141e34bf415861a8acfdaa0086e0e651c679d9.tar.gz
opensim-SC_OLD-57141e34bf415861a8acfdaa0086e0e651c679d9.tar.bz2
opensim-SC_OLD-57141e34bf415861a8acfdaa0086e0e651c679d9.tar.xz
Remove Temporary from use to shortcut asset stores. The Local property
differentiates between local & grid storage. The Temporary property just says that which service handles the it, the asset can be safely removed in the future.
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
index 2b2f11f..7f7f251 100644
--- a/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
+++ b/OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs
@@ -251,7 +251,7 @@ namespace OpenSim.Services.Connectors
251 251
252 public string Store(AssetBase asset) 252 public string Store(AssetBase asset)
253 { 253 {
254 if (asset.Temporary || asset.Local) 254 if (asset.Local)
255 { 255 {
256 if (m_Cache != null) 256 if (m_Cache != null)
257 m_Cache.Cache(asset); 257 m_Cache.Cache(asset);