aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Communications/CAPSService.cs2
-rw-r--r--OpenSim/Region/Environment/ModuleLoader.cs2
-rw-r--r--OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs2
3 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/CAPSService.cs b/OpenSim/Framework/Communications/CAPSService.cs
index 59cfc06..9cb04a9 100644
--- a/OpenSim/Framework/Communications/CAPSService.cs
+++ b/OpenSim/Framework/Communications/CAPSService.cs
@@ -32,7 +32,7 @@ namespace OpenSim.Framework.Communications
32{ 32{
33 public class CAPSService 33 public class CAPSService
34 { 34 {
35 private BaseHttpServer m_server; 35 private readonly BaseHttpServer m_server;
36 36
37 public CAPSService(BaseHttpServer httpServer) 37 public CAPSService(BaseHttpServer httpServer)
38 { 38 {
diff --git a/OpenSim/Region/Environment/ModuleLoader.cs b/OpenSim/Region/Environment/ModuleLoader.cs
index 13e7261..41d8cac 100644
--- a/OpenSim/Region/Environment/ModuleLoader.cs
+++ b/OpenSim/Region/Environment/ModuleLoader.cs
@@ -43,7 +43,7 @@ namespace OpenSim.Region.Environment
43 public Dictionary<string, Assembly> LoadedAssemblys = new Dictionary<string, Assembly>(); 43 public Dictionary<string, Assembly> LoadedAssemblys = new Dictionary<string, Assembly>();
44 44
45 private readonly List<IRegionModule> m_loadedModules = new List<IRegionModule>(); 45 private readonly List<IRegionModule> m_loadedModules = new List<IRegionModule>();
46 private Dictionary<string, IRegionModule> m_loadedSharedModules = new Dictionary<string, IRegionModule>(); 46 private readonly Dictionary<string, IRegionModule> m_loadedSharedModules = new Dictionary<string, IRegionModule>();
47 private readonly LogBase m_log; 47 private readonly LogBase m_log;
48 private readonly IConfigSource m_config; 48 private readonly IConfigSource m_config;
49 49
diff --git a/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs b/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs
index c31a79b..4dd1cb1 100644
--- a/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs
+++ b/OpenSim/Region/Environment/Modules/AvatarFactoryModule.cs
@@ -41,7 +41,7 @@ namespace OpenSim.Region.Environment.Modules
41 public class AvatarFactoryModule : IAvatarFactory 41 public class AvatarFactoryModule : IAvatarFactory
42 { 42 {
43 private Scene m_scene = null; 43 private Scene m_scene = null;
44 private Dictionary<LLUUID, AvatarAppearance> m_avatarsAppearance = new Dictionary<LLUUID, AvatarAppearance>(); 44 private readonly Dictionary<LLUUID, AvatarAppearance> m_avatarsAppearance = new Dictionary<LLUUID, AvatarAppearance>();
45 45
46 public bool TryGetAvatarAppearance(LLUUID avatarId, out AvatarAppearance appearance) 46 public bool TryGetAvatarAppearance(LLUUID avatarId, out AvatarAppearance appearance)
47 { 47 {