From 65c5efe43b68700bad94076d4cd421160203c5de Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Fri, 16 May 2008 01:22:11 +0000 Subject: Formatting cleanup. --- .../Communications/Local/LocalInventoryService.cs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'OpenSim/Region/Communications/Local/LocalInventoryService.cs') diff --git a/OpenSim/Region/Communications/Local/LocalInventoryService.cs b/OpenSim/Region/Communications/Local/LocalInventoryService.cs index 3d87007..4f60462 100644 --- a/OpenSim/Region/Communications/Local/LocalInventoryService.cs +++ b/OpenSim/Region/Communications/Local/LocalInventoryService.cs @@ -37,20 +37,20 @@ namespace OpenSim.Region.Communications.Local { /// /// An implementation of user inventory where the inventory is held locally (e.g. when OpenSim is - /// operating in standalone mode. + /// operating in standalone mode. /// public class LocalInventoryService : InventoryServiceBase { - private static readonly ILog m_log + private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); - + public override void RequestInventoryForUser(LLUUID userID, InventoryReceiptCallback callback) { m_log.InfoFormat("[LOCAL INVENTORY SERVICE]: Requesting inventory for user {0}", userID); - - List skeletonFolders = GetInventorySkeleton(userID); + + List skeletonFolders = GetInventorySkeleton(userID); InventoryFolderImpl rootFolder = null; - + List folders = new List(); List items = new List(); @@ -76,11 +76,11 @@ namespace OpenSim.Region.Communications.Local } } } - + m_log.InfoFormat( - "[LOCAL INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items", + "[LOCAL INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items", userID, folders.Count, items.Count); - + callback(folders, items); } -- cgit v1.1