* setting some readonlies
parent
62ae3c9bf5
commit
f72b834b25
|
@ -32,7 +32,7 @@ namespace OpenSim.Framework.Communications
|
||||||
{
|
{
|
||||||
public class CAPSService
|
public class CAPSService
|
||||||
{
|
{
|
||||||
private BaseHttpServer m_server;
|
private readonly BaseHttpServer m_server;
|
||||||
|
|
||||||
public CAPSService(BaseHttpServer httpServer)
|
public CAPSService(BaseHttpServer httpServer)
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,7 +43,7 @@ namespace OpenSim.Region.Environment
|
||||||
public Dictionary<string, Assembly> LoadedAssemblys = new Dictionary<string, Assembly>();
|
public Dictionary<string, Assembly> LoadedAssemblys = new Dictionary<string, Assembly>();
|
||||||
|
|
||||||
private readonly List<IRegionModule> m_loadedModules = new List<IRegionModule>();
|
private readonly List<IRegionModule> m_loadedModules = new List<IRegionModule>();
|
||||||
private Dictionary<string, IRegionModule> m_loadedSharedModules = new Dictionary<string, IRegionModule>();
|
private readonly Dictionary<string, IRegionModule> m_loadedSharedModules = new Dictionary<string, IRegionModule>();
|
||||||
private readonly LogBase m_log;
|
private readonly LogBase m_log;
|
||||||
private readonly IConfigSource m_config;
|
private readonly IConfigSource m_config;
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ namespace OpenSim.Region.Environment.Modules
|
||||||
public class AvatarFactoryModule : IAvatarFactory
|
public class AvatarFactoryModule : IAvatarFactory
|
||||||
{
|
{
|
||||||
private Scene m_scene = null;
|
private Scene m_scene = null;
|
||||||
private Dictionary<LLUUID, AvatarAppearance> m_avatarsAppearance = new Dictionary<LLUUID, AvatarAppearance>();
|
private readonly Dictionary<LLUUID, AvatarAppearance> m_avatarsAppearance = new Dictionary<LLUUID, AvatarAppearance>();
|
||||||
|
|
||||||
public bool TryGetAvatarAppearance(LLUUID avatarId, out AvatarAppearance appearance)
|
public bool TryGetAvatarAppearance(LLUUID avatarId, out AvatarAppearance appearance)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue