aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Console/ConsoleBase.cs2
-rw-r--r--OpenSim/Framework/IClientAPI.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Console/ConsoleBase.cs b/OpenSim/Framework/Console/ConsoleBase.cs
index 63711f3..5361e0f 100644
--- a/OpenSim/Framework/Console/ConsoleBase.cs
+++ b/OpenSim/Framework/Console/ConsoleBase.cs
@@ -37,7 +37,7 @@ namespace OpenSim.Framework.Console
37 { 37 {
38 private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); 38 private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
39 39
40 private object m_syncRoot = new object(); 40 private readonly object m_syncRoot = new object();
41 41
42 public conscmd_callback m_cmdParser; 42 public conscmd_callback m_cmdParser;
43 public string m_componentName; 43 public string m_componentName;
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs
index 0563f6b..2635a23 100644
--- a/OpenSim/Framework/IClientAPI.cs
+++ b/OpenSim/Framework/IClientAPI.cs
@@ -65,7 +65,7 @@ namespace OpenSim.Framework
65 Task = 4, 65 Task = 4,
66 Texture = 5, 66 Texture = 5,
67 Asset = 6, 67 Asset = 6,
68 Unknown = 7, 68 Unknown = 7, // Also doubles as 'do not throttle'
69 Back = 8 69 Back = 8
70 } 70 }
71 71