diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/ApplicationPlugins/Rest/RestPlugin.cs | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs index 58dd729..86de6de 100644 --- a/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs +++ b/OpenSim/ApplicationPlugins/Rest/RestPlugin.cs | |||
@@ -26,22 +26,15 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | 28 | using System; |
29 | using System.Threading; | ||
30 | using System.Collections; | ||
31 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
32 | using System.IO; | 30 | using System.IO; |
33 | using System.Net; | ||
34 | using System.Reflection; | 31 | using System.Reflection; |
35 | using System.Timers; | ||
36 | using System.Xml; | 32 | using System.Xml; |
37 | using OpenMetaverse; | 33 | using log4net; |
38 | using Nwc.XmlRpc; | ||
39 | using Nini.Config; | 34 | using Nini.Config; |
35 | using OpenMetaverse; | ||
40 | using OpenSim.Framework; | 36 | using OpenSim.Framework; |
41 | using OpenSim.Framework.Console; | ||
42 | using OpenSim.Framework.Servers; | 37 | using OpenSim.Framework.Servers; |
43 | using OpenSim.Framework.Communications; | ||
44 | using OpenSim.Region.Framework.Scenes; | ||
45 | 38 | ||
46 | namespace OpenSim.ApplicationPlugins.Rest | 39 | namespace OpenSim.ApplicationPlugins.Rest |
47 | { | 40 | { |
@@ -49,8 +42,8 @@ namespace OpenSim.ApplicationPlugins.Rest | |||
49 | { | 42 | { |
50 | #region properties | 43 | #region properties |
51 | 44 | ||
52 | protected static readonly log4net.ILog m_log = | 45 | protected static readonly ILog m_log = |
53 | log4net.LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 46 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
54 | 47 | ||
55 | private IConfig _config; // Configuration source: Rest Plugins | 48 | private IConfig _config; // Configuration source: Rest Plugins |
56 | private IConfig _pluginConfig; // Configuration source: Plugin specific | 49 | private IConfig _pluginConfig; // Configuration source: Plugin specific |
@@ -65,7 +58,7 @@ namespace OpenSim.ApplicationPlugins.Rest | |||
65 | private string _godkey; | 58 | private string _godkey; |
66 | private int _reqk; | 59 | private int _reqk; |
67 | 60 | ||
68 | [ThreadStaticAttribute] | 61 | [ThreadStatic] |
69 | private static string _threadRequestID = String.Empty; | 62 | private static string _threadRequestID = String.Empty; |
70 | 63 | ||
71 | /// <summary> | 64 | /// <summary> |