From 0b2bc26bfea8e4e32c77e20b043fd82c80edfc5e Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Mon, 29 Sep 2008 15:33:58 +0000 Subject: * minor: remove warnings --- .../Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Environment/Modules/Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs') diff --git a/OpenSim/Region/Environment/Modules/Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs b/OpenSim/Region/Environment/Modules/Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs index f2f8cd2..91763a7 100644 --- a/OpenSim/Region/Environment/Modules/Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs +++ b/OpenSim/Region/Environment/Modules/Avatar/Inventory/Archiver/InventoryArchiveReadRequest.cs @@ -56,7 +56,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Archiver public InventoryArchiveReadRequest(Scene currentScene, CommunicationsManager commsManager) { - List serialisedObjects = new List(); + //List serialisedObjects = new List(); scene = currentScene; this.commsManager = commsManager; } @@ -150,7 +150,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Archiver string firstName = cmdparams[0]; string lastName = cmdparams[1]; - string invPath = cmdparams[2]; + //string invPath = cmdparams[2]; loadPath = (cmdparams.Length > 3 ? cmdparams[3] : "inventory.tar.gz"); archive @@ -192,7 +192,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Inventory.Archiver /// true if asset was successfully loaded, false otherwise private bool LoadAsset(string assetPath, byte[] data) { - IRegionSerialiser serialiser = scene.RequestModuleInterface(); + //IRegionSerialiser serialiser = scene.RequestModuleInterface(); // Right now we're nastily obtaining the UUID from the filename string filename = assetPath.Remove(0, ArchiveConstants.ASSETS_PATH.Length); int i = filename.LastIndexOf(ArchiveConstants.ASSET_EXTENSION_SEPARATOR); -- cgit v1.1