From b3f783ae056fd2e8921336a1d459d91c7df97ce3 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Fri, 11 Apr 2008 20:37:26 +0000 Subject: * Reduce publicly exposed fields on InventoryCollection, which was causing duplicate sets of inventory data to be sent over the grid * Won't actually fix anything, since we were handling the problem anyway * Also add more doc, fix up debugging messages, etc --- OpenSim/Framework/InventoryCollection.cs | 45 +++----------------------------- 1 file changed, 3 insertions(+), 42 deletions(-) (limited to 'OpenSim/Framework/InventoryCollection.cs') diff --git a/OpenSim/Framework/InventoryCollection.cs b/OpenSim/Framework/InventoryCollection.cs index e76e1a9..abccf49 100644 --- a/OpenSim/Framework/InventoryCollection.cs +++ b/OpenSim/Framework/InventoryCollection.cs @@ -37,47 +37,8 @@ namespace OpenSim.Framework /// public class InventoryCollection { - public List _folders; - public List _allItems; - public LLUUID _userID; - - public List Folders { - get { - return _folders; - } - set { - _folders = value; - } - } - - public List AllItems { - get { - return _allItems; - } - set { - _allItems = value; - } - } - - public LLUUID UserID { - get { - return _userID; - } - set { - _userID = value; - } - } - - public InventoryCollection() - { - _folders = new List(); - _allItems = new List(); - } - - public InventoryCollection(List folders, List allItems) - { - _folders = folders; - _allItems = allItems; - } + public List Folders; + public List Items; + public LLUUID UserID; } } -- cgit v1.1