* Since we're discussing it, applying the m_ convention on some members...

This commit is contained in:
lbsa71
2007-07-16 18:44:30 +00:00
parent 585517a691
commit d79e69d168
2 changed files with 24 additions and 24 deletions

View File

@@ -42,16 +42,16 @@ namespace OpenSim.Region.ClientStack
{
public class RegionApplicationBase
{
protected AssetCache AssetCache;
protected InventoryCache InventoryCache;
protected Dictionary<EndPoint, uint> clientCircuits = new Dictionary<EndPoint, uint>();
protected DateTime startuptime;
protected NetworkServersInfo serversData;
protected AssetCache m_assetCache;
protected InventoryCache m_inventoryCache;
protected Dictionary<EndPoint, uint> m_clientCircuits = new Dictionary<EndPoint, uint>();
protected DateTime m_startuptime;
protected NetworkServersInfo m_serversData;
protected List<UDPServer> m_udpServer = new List<UDPServer>();
protected List<RegionInfo> regionData = new List<RegionInfo>();
protected List<RegionInfo> m_regionData = new List<RegionInfo>();
protected List<IWorld> m_localWorld = new List<IWorld>();
protected BaseHttpServer httpServer;
protected BaseHttpServer m_httpServer;
protected List<AuthenticateSessionsBase> AuthenticateSessionsHandler = new List<AuthenticateSessionsBase>();
protected LogBase m_log;