From 4203cf15034cc0389a583e6276f6134b6a5416fd Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 19 Feb 2009 17:19:08 +0000 Subject: * refactor: Rename new class AssetGatherer to UuidGatherer to reflect what it actually does --- .../Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/CoreModules/Avatar/Inventory/Archiver') diff --git a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs index cf781cf..8d25d0f 100644 --- a/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs +++ b/OpenSim/Region/CoreModules/Avatar/Inventory/Archiver/InventoryArchiveWriteRequest.cs @@ -46,7 +46,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); protected TarArchiveWriter archive = new TarArchiveWriter(); - protected AssetGatherer m_assetGatherer; + protected UuidGatherer m_assetGatherer; protected Dictionary assetUuids = new Dictionary(); private InventoryArchiverModule m_module; @@ -81,7 +81,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Archiver m_userInfo = userInfo; m_invPath = invPath; m_saveStream = saveStream; - m_assetGatherer = new AssetGatherer(m_module.CommsManager.AssetCache); + m_assetGatherer = new UuidGatherer(m_module.CommsManager.AssetCache); } protected void ReceivedAllAssets(IDictionary assetsFound, ICollection assetsNotFoundUuids) -- cgit v1.1