diff options
author | Mic Bowman | 2013-06-10 13:26:19 -0700 |
---|---|---|
committer | Mic Bowman | 2013-06-10 13:26:19 -0700 |
commit | 57141e34bf415861a8acfdaa0086e0e651c679d9 (patch) | |
tree | 98b18a19c85be49bcb980c074558455bd28c462c /OpenSim/Services/Connectors | |
parent | Mantis 5346: llAxisAngle2Rot() should normalize before computing (diff) | |
download | opensim-SC-57141e34bf415861a8acfdaa0086e0e651c679d9.zip opensim-SC-57141e34bf415861a8acfdaa0086e0e651c679d9.tar.gz opensim-SC-57141e34bf415861a8acfdaa0086e0e651c679d9.tar.bz2 opensim-SC-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/Connectors')
-rw-r--r-- | OpenSim/Services/Connectors/Asset/AssetServicesConnector.cs | 2 |
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); |