aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Client
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-04-22 19:43:58 +0000
committerJustin Clarke Casey2009-04-22 19:43:58 +0000
commitc25ceb009e644579c56811faffded540658cd4dd (patch)
treea0f00bac45c3118c199e736795fc2f6ae23a5ecb /OpenSim/Client
parentThank you kindly, TLaukkan, for a patch that: (diff)
downloadopensim-SC_OLD-c25ceb009e644579c56811faffded540658cd4dd.zip
opensim-SC_OLD-c25ceb009e644579c56811faffded540658cd4dd.tar.gz
opensim-SC_OLD-c25ceb009e644579c56811faffded540658cd4dd.tar.bz2
opensim-SC_OLD-c25ceb009e644579c56811faffded540658cd4dd.tar.xz
* minor: remove some compiler warnings
Diffstat (limited to 'OpenSim/Client')
-rw-r--r--OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs14
-rw-r--r--OpenSim/Client/VWoHTTP/VWoHTTPModule.cs2
2 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
index badf918..bf622c6 100644
--- a/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
+++ b/OpenSim/Client/VWoHTTP/ClientStack/VWHClientView.cs
@@ -12,21 +12,21 @@ namespace OpenSim.Client.VWoHTTP.ClientStack
12{ 12{
13 class VWHClientView : IClientAPI 13 class VWHClientView : IClientAPI
14 { 14 {
15 private Scene m_scene; 15// private Scene m_scene;
16 16
17 public void ProcessInMsg(OSHttpRequest req, OSHttpResponse resp) 17 public void ProcessInMsg(OSHttpRequest req, OSHttpResponse resp)
18 { 18 {
19 string method = req.Url.AbsolutePath.Split('/')[2]; 19// string method = req.Url.AbsolutePath.Split('/')[2];
20 } 20 }
21 21
22 private void ProcessAssetRequest(OSHttpRequest req, OSHttpResponse resp) 22// private void ProcessAssetRequest(OSHttpRequest req, OSHttpResponse resp)
23 { 23// {
24 24//
25 } 25// }
26 26
27 public VWHClientView(UUID sessionID, UUID agentID, string agentName, Scene scene) 27 public VWHClientView(UUID sessionID, UUID agentID, string agentName, Scene scene)
28 { 28 {
29 m_scene = scene; 29// m_scene = scene;
30 } 30 }
31 31
32 #region Implementation of IClientAPI 32 #region Implementation of IClientAPI
diff --git a/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs b/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs
index f698c8c..451bf1e 100644
--- a/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs
+++ b/OpenSim/Client/VWoHTTP/VWoHTTPModule.cs
@@ -18,7 +18,7 @@ namespace OpenSim.Client.VWoHTTP
18 18
19 private readonly List<Scene> m_scenes = new List<Scene>(); 19 private readonly List<Scene> m_scenes = new List<Scene>();
20 20
21 private Dictionary<UUID, VWHClientView> m_clients = new Dictionary<UUID, VWHClientView>(); 21 //private Dictionary<UUID, VWHClientView> m_clients = new Dictionary<UUID, VWHClientView>();
22 22
23 #region Implementation of IRegionModule 23 #region Implementation of IRegionModule
24 24