a few missing files
parent
033f6f889d
commit
e4f7a1c07a
|
@ -35,7 +35,7 @@ namespace OpenSim.Framework
|
||||||
/// Cache the specified asset.
|
/// Cache the specified asset.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name='asset'></param>
|
/// <param name='asset'></param>
|
||||||
void Cache(AssetBase asset);
|
void Cache(AssetBase asset, bool replace = false);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Cache that the specified asset wasn't found.
|
/// Cache that the specified asset wasn't found.
|
||||||
|
|
|
@ -208,7 +208,7 @@ namespace OpenSim.Region.CoreModules.Asset
|
||||||
/// <param name="asset">
|
/// <param name="asset">
|
||||||
/// The asset that is being cached.
|
/// The asset that is being cached.
|
||||||
/// </param>
|
/// </param>
|
||||||
public void Cache(AssetBase asset)
|
public void Cache(AssetBase asset, bool replace = true)
|
||||||
{
|
{
|
||||||
if (asset != null)
|
if (asset != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -121,7 +121,7 @@ namespace OpenSim.Region.CoreModules.Asset
|
||||||
return asset != null;
|
return asset != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Cache(AssetBase asset)
|
public void Cache(AssetBase asset, bool replace = true)
|
||||||
{
|
{
|
||||||
if (asset != null)
|
if (asset != null)
|
||||||
m_Cache.Store(asset.ID, asset);
|
m_Cache.Store(asset.ID, asset);
|
||||||
|
|
Loading…
Reference in New Issue