diff options
author | Dr Scofield | 2009-05-22 14:57:00 +0000 |
---|---|---|
committer | Dr Scofield | 2009-05-22 14:57:00 +0000 |
commit | 1d02636c27de64f8acec5bb9a76f8659f0bfdd2b (patch) | |
tree | a54b14f51877472031e92beee26f1cf72e4f2b4c /OpenSim/Framework/Console | |
parent | converting Chat module and Concierge module to new style region modules (diff) | |
download | opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.zip opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.tar.gz opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.tar.bz2 opensim-SC_OLD-1d02636c27de64f8acec5bb9a76f8659f0bfdd2b.tar.xz |
cleaning out warnings.
NOTE: we currently have a gazillion warnings caused stuff flagged as
"obsolete" (OGS1 stuff) --- what's up with that?
Diffstat (limited to 'OpenSim/Framework/Console')
-rw-r--r-- | OpenSim/Framework/Console/LocalConsole.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Console/RemoteConsole.cs | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Framework/Console/LocalConsole.cs b/OpenSim/Framework/Console/LocalConsole.cs index 4d768b9..c1ac9b3 100644 --- a/OpenSim/Framework/Console/LocalConsole.cs +++ b/OpenSim/Framework/Console/LocalConsole.cs | |||
@@ -42,7 +42,7 @@ namespace OpenSim.Framework.Console | |||
42 | { | 42 | { |
43 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 43 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
44 | 44 | ||
45 | private readonly object m_syncRoot = new object(); | 45 | // private readonly object m_syncRoot = new object(); |
46 | 46 | ||
47 | private int y = -1; | 47 | private int y = -1; |
48 | private int cp = 0; | 48 | private int cp = 0; |
diff --git a/OpenSim/Framework/Console/RemoteConsole.cs b/OpenSim/Framework/Console/RemoteConsole.cs index 544a072..5a57a3c 100644 --- a/OpenSim/Framework/Console/RemoteConsole.cs +++ b/OpenSim/Framework/Console/RemoteConsole.cs | |||
@@ -43,8 +43,8 @@ namespace OpenSim.Framework.Console | |||
43 | { | 43 | { |
44 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 44 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
45 | 45 | ||
46 | private IHttpServer m_Server = null; | 46 | // private IHttpServer m_Server = null; |
47 | private IConfigSource m_Config = null; | 47 | // private IConfigSource m_Config = null; |
48 | 48 | ||
49 | private List<string> m_Scrollback = new List<string>(); | 49 | private List<string> m_Scrollback = new List<string>(); |
50 | private ManualResetEvent m_DataEvent = new ManualResetEvent(false); | 50 | private ManualResetEvent m_DataEvent = new ManualResetEvent(false); |
@@ -57,12 +57,12 @@ namespace OpenSim.Framework.Console | |||
57 | 57 | ||
58 | public void ReadConfig(IConfigSource config) | 58 | public void ReadConfig(IConfigSource config) |
59 | { | 59 | { |
60 | m_Config = config; | 60 | // m_Config = config; |
61 | } | 61 | } |
62 | 62 | ||
63 | public void SetServer(IHttpServer server) | 63 | public void SetServer(IHttpServer server) |
64 | { | 64 | { |
65 | m_Server = server; | 65 | // m_Server = server; |
66 | } | 66 | } |
67 | 67 | ||
68 | public override void Output(string text, string level) | 68 | public override void Output(string text, string level) |